diff --git a/.circleci/config.yml b/.circleci/config.yml index 600b51c6..716a2610 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,22 +6,17 @@ jobs: build-docs: working_directory: ~/repo docker: - - image: circleci/python:3.8.5-buster + - image: cimg/python:3.10 steps: - checkout - - run: - name: Install deps for building atari-py - command: sudo apt-get install -y cmake ffmpeg - - run: name: Install Python dependencies command: | python3 -m venv venv source venv/bin/activate - pip install pip==21.1.1 - pip install --upgrade wheel setuptools + pip install --upgrade pip wheel setuptools pip install -r site/requirements.txt -r requirements.txt - restore_cache: @@ -54,7 +49,7 @@ jobs: deploy-docs: working_directory: ~/repo docker: - - image: circleci/python:3.8.5-buster + - image: cimg/python:3.10 steps: - checkout @@ -75,7 +70,7 @@ jobs: - add_ssh_keys: fingerprints: - db:84:df:44:ad:77:d0:aa:2d:81:c9:73:30:9d:21:37 + 5c:54:62:37:75:7f:4d:14:f4:07:82:1c:50:0d:ee:9b - run: name: deploy to gh-pages diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..8db2976b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: ".github/workflows" + schedule: + interval: "monthly" + groups: + actions: + patterns: + - "*" + labels: + - "infrastructure" diff --git a/.github/workflows/ci_tests_run_notebooks.yml b/.github/workflows/ci_tests_run_notebooks.yml new file mode 100644 index 00000000..7b54b916 --- /dev/null +++ b/.github/workflows/ci_tests_run_notebooks.yml @@ -0,0 +1,59 @@ +name: Test notebooks + +on: + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: '0 5 * * 1' + workflow_dispatch: + +jobs: + tests: + name: ${{ matrix.os }} ${{ matrix.name }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + # Run all supported OS for one Python version, then add a few extra scenarios + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ['3.10'] + toxenv: [py310-test] + name: ['with Python 3.10',] + + include: + - python-version: '3.9' + toxenv: py39-test-oldestdeps + name: with Python 3.9 and oldest versioned dependencies + os: ubuntu-latest + + - python-version: '3.11' + toxenv: py311-test + name: with Python 3.11 and latest released version of dependencies + os: ubuntu-latest + + - python-version: '3.12' + toxenv: py312-test-predeps + name: with Python 3.12 and latest or pre-release version of dependencies + os: ubuntu-latest + + - python-version: '3.12' + toxenv: py312-test-devdeps + name: with Python 3.12 and developer versioned dependencies + os: ubuntu-latest + + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5.6.0 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: python -m pip install --upgrade tox + + - name: Test with nbval + run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} diff --git a/.github/workflows/circleci.yml b/.github/workflows/circleci.yml index 5115024b..642252b7 100644 --- a/.github/workflows/circleci.yml +++ b/.github/workflows/circleci.yml @@ -5,8 +5,9 @@ jobs: name: Run CircleCI artifacts redirector steps: - name: GitHub Action step - uses: larsoner/circleci-artifacts-redirector-action@master + uses: scientific-python/circleci-artifacts-redirector-action@839631420e45a08af893032e5a5e8843bf47e8ff # v1.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} + api-token: ${{ secrets.CIRCLE_TOKEN }} artifact-path: 0/site/_build/html/index.html circleci-jobs: build-docs diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml new file mode 100644 index 00000000..18da4854 --- /dev/null +++ b/.github/workflows/conda.yml @@ -0,0 +1,52 @@ +name: Test building site with conda environment + +on: + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: '0 5 * * 1' + workflow_dispatch: + +jobs: + test: + runs-on: ${{ matrix.os }}-latest + + strategy: + matrix: + os: [ubuntu, macos, windows] + + defaults: + run: + shell: bash -l {0} + + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0 + with: + auto-update-conda: true + activate-environment: numpy-tutorials + environment-file: environment.yml + miniforge-version: latest + use-mamba: true + python-version: "3.11" + auto-activate-base: false + - name: inspect and build + id: build_step + continue-on-error: true + run: | + conda info + conda list + make -C site/ SPHINXOPTS="-nWT --keep-going" html + + - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + with: + name: sphinx-build-artifact + path: site/_build/html/reports + + - name: fail on build errors + if: steps.build_step.outcome != 'success' + run: exit 1 diff --git a/.gitignore b/.gitignore index b4e4d319..bee3f8ec 100644 --- a/.gitignore +++ b/.gitignore @@ -92,3 +92,12 @@ Thumbs.db ################################### site/_build/* site/notebooks/* + +# Content generated during notebook execution +content/mooreslaw_regression* +content/tutorial-x-ray-image-processing/xray_image.gif +content/video +content/*ipynb +content/tutorial-nlp-from-scratch/parameters.npy +content/tutorial-nlp-from-scratch/*ipynb +content/x_y-squared* diff --git a/LICENSE.txt b/LICENSE.txt index 8ce64521..014d51c9 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2005-2020, NumPy Developers. +Copyright (c) 2005-2023, NumPy Developers. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 56d65068..b5453a6e 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ or navigate to any of the documents listed below and download it individually. 7. [Tutorial: Masked Arrays](content/tutorial-ma.md) 8. [Tutorial: Static Equilibrium](content/tutorial-static_equilibrium.md) 9. [Tutorial: Plotting Fractals](content/tutorial-plotting-fractals.ipynb) +10. [Tutorial: NumPy natural language processing from scratch with a focus on ethics](content/tutorial-nlp-from-scratch.md) +11. [Tutorial: Analysing the impact of the lockdown on air quality in Delhi, India](content/tutorial-air-quality-analysis.md) ## Contributing @@ -154,6 +156,11 @@ cd site make html ``` +## Translations + +While we don't have the capacity to translate and maintain translated versions +of these tutorials, you are free to use and translate them to other languages. + ## Useful links and resources The following links may be useful: diff --git a/apt.txt b/apt.txt deleted file mode 100644 index 6cef7b8b..00000000 --- a/apt.txt +++ /dev/null @@ -1,2 +0,0 @@ -cmake -ffmpeg diff --git a/content/_static/11-breakpoints.png b/content/_static/11-breakpoints.png new file mode 100644 index 00000000..b552dd8c Binary files /dev/null and b/content/_static/11-breakpoints.png differ diff --git a/content/_static/11-delhi-aqi.jpg b/content/_static/11-delhi-aqi.jpg new file mode 100644 index 00000000..5423a96b Binary files /dev/null and b/content/_static/11-delhi-aqi.jpg differ diff --git a/content/_static/11-one-tailed-test.svg b/content/_static/11-one-tailed-test.svg new file mode 100644 index 00000000..61d9e53f --- /dev/null +++ b/content/_static/11-one-tailed-test.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fail to reject null hypothesis + Critical value + Reject null hypothesis + + + Critical value + + One-tailed test (left-tailed) + Normal distribution of data + + diff --git a/content/_static/11-t-table.png b/content/_static/11-t-table.png new file mode 100644 index 00000000..376af213 Binary files /dev/null and b/content/_static/11-t-table.png differ diff --git a/content/_static/dl_architectures.jpg b/content/_static/dl_architectures.jpg new file mode 100644 index 00000000..f9c07677 Binary files /dev/null and b/content/_static/dl_architectures.jpg differ diff --git a/content/_static/lstm.gif b/content/_static/lstm.gif new file mode 100644 index 00000000..a2884ee3 Binary files /dev/null and b/content/_static/lstm.gif differ diff --git a/content/_static/mem_block.png b/content/_static/mem_block.png new file mode 100644 index 00000000..58df4536 Binary files /dev/null and b/content/_static/mem_block.png differ diff --git a/content/air-quality-data.csv b/content/air-quality-data.csv new file mode 100644 index 00000000..82b2154d --- /dev/null +++ b/content/air-quality-data.csv @@ -0,0 +1,9529 @@ +Datetime,PM2.5,PM10,NO2,NH3,SO2,CO,O3,NOx,NO,Benzene,Toluene,Xylene +2019-05-31 00:00:00,103.26,305.46,94.71,31.43,30.16,3.0,18.06,178.31,152.73,13.65,83.47,2.54 +2019-05-31 01:00:00,104.47,309.14,74.66,34.08,27.02,1.69,18.65,106.5,79.98,11.35,76.79,2.91 +2019-05-31 02:00:00,90.0,314.02,48.11,32.6,18.12,0.83,28.27,48.45,25.27,5.66,32.91,1.59 +2019-05-31 03:00:00,78.01,356.14,45.45,30.21,16.78,0.79,27.47,44.22,21.5,3.6,21.41,0.78 +2019-05-31 04:00:00,80.19,372.9,45.23,28.68,16.41,0.76,26.92,44.06,22.15,4.5,23.39,0.62 +2019-05-31 05:00:00,83.59,389.97,39.49,27.71,17.42,0.76,28.71,39.33,21.04,3.25,23.59,0.56 +2019-05-31 06:00:00,79.04,371.64,39.61,26.87,16.91,0.84,29.26,43.11,24.37,3.12,15.27,0.46 +2019-05-31 07:00:00,77.32,361.88,42.63,27.26,17.86,0.96,27.07,48.22,28.81,3.32,14.42,0.41 +2019-05-31 08:00:00,84.3,377.77,42.49,28.41,20.19,0.98,33.05,48.22,27.76,3.4,14.53,0.4 +2019-05-31 09:00:00,94.79,406.19,38.86,29.22,19.97,0.98,46.97,42.07,23.47,3.39,13.39,0.43 +2019-05-31 10:00:00,99.37,414.53,36.61,33.93,19.31,0.96,62.89,38.75,20.04,3.08,16.35,0.4 +2019-05-31 11:00:00,99.67,412.05,34.73,41.31,18.82,0.88,88.58,33.49,14.65,2.5,17.79,0.34 +2019-05-31 12:00:00,97.87,382.23,36.61,42.79,20.84,1.06,107.29,33.92,14.12,2.55,16.88,0.22 +2019-05-31 13:00:00,98.59,353.18,35.19,42.19,21.07,1.1,118.81,33.51,15.66,2.46,17.7,0.11 +2019-05-31 14:00:00,87.8,319.78,32.4,40.8,20.32,1.15,125.11,30.88,13.93,2.4,17.7,0.08 +2019-05-31 15:00:00,80.14,279.61,34.5,40.77,18.94,1.03,122.43,34.68,17.06,2.05,14.3,0.2 +2019-05-31 16:00:00,74.4,259.52,34.45,39.36,17.75,0.98,118.24,33.72,15.58,2.29,25.86,0.13 +2019-05-31 17:00:00,70.15,229.66,34.87,34.35,17.26,0.9,112.06,41.04,21.31,2.32,23.15,0.2 +2019-05-31 18:00:00,68.17,223.24,45.41,33.37,17.96,1.1,105.73,50.36,23.17,2.35,21.01,0.28 +2019-05-31 19:00:00,70.63,256.72,77.93,34.32,16.86,1.7,68.93,75.02,37.65,3.5,31.2,0.24 +2019-05-31 20:00:00,80.84,302.4,105.87,34.74,18.83,2.32,31.67,94.82,41.5,5.74,50.43,0.22 +2019-05-31 21:00:00,97.2,362.61,117.03,36.14,20.05,2.98,20.98,148.25,95.64,8.23,65.39,0.34 +2019-05-31 22:00:00,106.21,378.75,114.26,34.89,21.48,3.7,19.35,171.61,134.06,8.81,71.75,0.78 +2019-05-31 23:00:00,119.78,367.12,112.9,36.9,25.28,3.77,17.28,193.52,168.81,9.37,73.06,1.32 +2019-06-01 00:00:00,113.02,379.99,105.76,37.49,28.03,3.63,18.16,193.54,174.52,9.82,71.07,2.11 +2019-06-01 01:00:00,120.95,393.27,94.28,40.12,29.17,3.14,18.05,202.86,179.93,10.36,68.12,3.14 +2019-06-01 02:00:00,126.07,370.98,81.94,36.77,30.03,2.37,20.03,163.32,140.09,10.75,62.92,3.01 +2019-06-01 03:00:00,115.24,320.73,68.82,34.81,25.22,1.52,18.25,100.16,71.81,8.33,50.42,2.08 +2019-06-01 04:00:00,89.87,259.65,63.64,32.77,25.75,1.26,17.84,83.01,54.98,5.88,40.74,1.24 +2019-06-01 05:00:00,90.97,258.56,62.64,33.6,26.13,1.29,18.09,92.28,67.18,5.85,45.01,0.87 +2019-06-01 06:00:00,101.93,282.06,62.02,33.71,24.52,1.51,20.28,111.06,89.9,6.34,46.91,0.87 +2019-06-01 07:00:00,111.26,314.18,64.34,33.31,21.77,1.75,23.17,113.7,89.2,6.76,38.01,0.8 +2019-06-01 08:00:00,110.47,348.11,64.84,34.6,21.1,1.69,28.88,80.34,50.33,6.09,33.92,0.85 +2019-06-01 09:00:00,117.37,352.98,53.8,35.82,20.55,1.41,47.6,48.03,19.49,5.17,25.45,0.85 +2019-06-01 10:00:00,115.1,332.39,43.14,36.67,18.07,1.37,67.49,37.23,13.5,4.6,18.42,0.62 +2019-06-01 11:00:00,105.6,291.9,39.44,43.05,19.1,1.14,98.39,29.31,10.58,4.47,17.4,0.48 +2019-06-01 12:00:00,96.42,281.74,37.5,50.28,20.42,1.23,124.18,26.75,7.35,4.29,16.93,0.32 +2019-06-01 13:00:00,90.31,278.67,35.51,50.19,19.44,1.18,132.37,28.76,10.71,4.21,16.76,0.32 +2019-06-01 14:00:00,88.6,272.21,33.91,46.94,19.85,1.12,124.23,24.54,7.35,3.79,16.02,0.33 +2019-06-01 15:00:00,84.42,266.19,32.34,45.31,20.36,1.02,128.11,23.78,6.35,3.51,19.97,0.31 +2019-06-01 16:00:00,76.33,257.42,32.68,45.07,18.81,1.03,140.09,24.01,6.46,3.48,25.18,0.25 +2019-06-01 17:00:00,73.75,259.69,33.85,42.73,19.14,1.03,131.03,24.39,5.89,3.34,29.93,0.11 +2019-06-01 18:00:00,74.31,261.16,38.62,43.94,19.02,1.1,114.9,26.92,6.01,3.74,35.42,0.09 +2019-06-01 19:00:00,71.79,265.6,52.9,47.07,19.85,1.26,85.33,40.5,13.84,4.26,33.45,0.2 +2019-06-01 20:00:00,72.65,271.91,64.95,48.09,20.86,1.42,59.9,49.2,18.4,4.51,31.64,0.28 +2019-06-01 21:00:00,77.15,280.95,69.31,44.5,16.63,1.62,46.6,53.64,17.91,4.58,29.27,0.42 +2019-06-01 22:00:00,80.81,283.39,65.96,41.86,15.44,1.71,37.56,47.91,14.43,4.85,30.14,0.5 +2019-06-01 23:00:00,85.16,276.64,71.51,38.7,17.76,1.66,29.03,48.51,10.62,4.91,27.2,0.48 +2019-06-02 00:00:00,91.04,280.06,54.0,41.77,15.6,1.42,33.58,36.47,8.36,5.16,25.85,0.51 +2019-06-02 01:00:00,86.98,263.22,40.4,42.28,16.4,1.05,43.98,27.55,6.92,4.29,21.96,0.47 +2019-06-02 02:00:00,75.44,220.25,33.4,45.93,16.92,0.94,49.45,23.8,6.9,3.06,15.34,0.32 +2019-06-02 03:00:00,67.06,202.18,23.58,45.53,13.4,0.85,47.86,18.13,6.22,2.57,12.68,0.18 +2019-06-02 04:00:00,61.43,192.44,23.19,40.98,11.89,0.91,42.62,17.82,5.93,2.13,11.08,0.26 +2019-06-02 05:00:00,60.61,176.84,23.19,40.84,11.85,0.91,43.08,17.76,5.91,1.98,11.37,0.24 +2019-06-02 06:00:00,62.18,170.59,23.7,40.8,11.44,0.92,41.13,18.27,5.88,1.72,7.71,0.22 +2019-06-02 07:00:00,60.42,176.1,25.92,42.66,11.88,0.89,39.65,19.84,6.49,1.69,8.87,0.22 +2019-06-02 08:00:00,67.05,190.66,25.43,49.18,12.36,0.93,41.28,19.82,6.8,2.06,9.09,0.2 +2019-06-02 09:00:00,73.28,205.24,25.33,49.94,12.61,0.97,42.64,20.27,7.54,2.0,7.27,0.2 +2019-06-02 10:00:00,73.07,218.54,25.29,52.53,11.82,1.02,49.04,21.26,8.21,2.04,6.35,0.15 +2019-06-02 11:00:00,74.43,219.3,23.87,57.16,11.51,0.99,59.88,21.29,9.28,2.07,6.16,0.18 +2019-06-02 12:00:00,72.41,219.01,23.93,58.89,11.84,1.01,71.32,25.07,13.91,2.04,6.49,0.17 +2019-06-02 13:00:00,69.96,215.83,24.2,56.66,12.22,0.96,79.92,25.46,14.47,1.87,6.36,0.16 +2019-06-02 14:00:00,71.39,210.41,23.31,54.91,13.23,0.95,92.42,24.89,14.13,1.73,6.59,0.16 +2019-06-02 15:00:00,70.39,206.56,23.9,53.46,13.45,0.89,101.23,25.14,13.71,1.67,9.45,0.15 +2019-06-02 16:00:00,66.91,205.32,23.64,52.74,14.08,0.95,113.35,24.81,14.03,1.87,10.06,0.15 +2019-06-02 17:00:00,68.65,209.27,25.6,51.11,14.78,0.96,116.38,26.89,14.82,2.0,13.55,0.15 +2019-06-02 18:00:00,69.79,215.46,29.71,51.67,15.21,1.05,99.78,28.14,13.91,2.24,17.82,0.16 +2019-06-02 19:00:00,72.46,233.07,40.17,50.08,15.28,1.16,74.81,34.27,13.84,2.41,20.49,0.2 +2019-06-02 20:00:00,78.84,254.26,52.0,47.6,17.83,1.37,54.16,41.33,14.64,2.81,29.72,0.32 +2019-06-02 21:00:00,88.1,267.48,58.21,45.44,18.42,1.5,42.66,43.96,13.86,3.04,26.86,0.4 +2019-06-02 22:00:00,89.28,263.12,56.5,42.25,18.52,1.65,37.42,38.22,10.22,3.04,20.83,0.38 +2019-06-02 23:00:00,89.51,259.7,44.86,40.46,17.0,1.43,42.62,30.9,7.72,2.82,15.97,0.31 +2019-06-03 00:00:00,83.14,231.88,35.89,43.93,15.55,1.18,46.71,26.39,7.85,2.38,10.83,0.26 +2019-06-03 01:00:00,71.33,191.46,31.96,45.37,13.91,1.05,46.32,23.9,6.92,1.94,7.12,0.19 +2019-06-03 02:00:00,68.52,174.6,26.78,49.94,12.07,0.97,42.39,20.38,6.41,1.85,6.54,0.12 +2019-06-03 03:00:00,70.26,173.6,22.19,45.82,11.77,0.99,43.59,17.62,6.85,1.9,5.92,0.13 +2019-06-03 04:00:00,69.62,177.28,21.22,40.7,12.28,0.94,41.25,16.38,6.05,1.93,5.37,0.13 +2019-06-03 05:00:00,72.12,193.45,21.56,38.71,13.33,0.97,38.66,16.71,5.93,1.94,5.08,0.13 +2019-06-03 06:00:00,70.91,246.41,23.64,40.36,13.68,0.89,37.26,18.0,5.98,1.87,4.85,0.1 +2019-06-03 07:00:00,69.87,325.06,26.28,39.9,13.65,0.94,39.3,20.4,6.82,1.67,5.2,0.14 +2019-06-03 08:00:00,74.01,405.47,26.25,43.38,13.61,0.97,45.07,21.03,7.3,1.62,5.29,0.11 +2019-06-03 09:00:00,84.01,467.37,25.75,42.36,13.86,0.95,52.43,21.05,7.54,1.71,5.41,0.1 +2019-06-03 10:00:00,82.7,480.01,26.19,44.91,12.47,1.02,55.09,26.47,13.25,1.78,5.49,0.1 +2019-06-03 11:00:00,83.44,473.94,27.48,50.69,11.68,1.03,66.46,32.76,18.93,1.73,6.41,0.09 +2019-06-03 12:00:00,81.92,453.36,36.36,50.96,11.7,1.0,72.44,32.34,6.39,1.72,7.76,0.08 +2019-06-03 13:00:00,75.83,435.63,32.62,48.39,12.11,1.1,77.33,31.91,6.3,1.62,7.54,0.08 +2019-06-03 14:00:00,65.06,413.77,35.16,45.36,11.61,1.06,82.6,24.15,11.83,1.63,7.37,0.08 +2019-06-03 15:00:00,61.24,378.12,29.59,41.08,12.07,1.03,87.24,22.19,20.58,1.43,7.22,0.08 +2019-06-03 16:00:00,63.08,342.14,25.7,42.42,11.78,1.04,89.08,22.29,9.86,1.49,8.4,0.12 +2019-06-03 17:00:00,59.27,298.48,28.25,40.78,11.71,1.05,87.15,22.89,8.62,1.45,10.17,0.1 +2019-06-03 18:00:00,52.95,263.91,29.95,43.64,11.64,1.04,80.82,31.82,18.41,1.63,10.32,0.11 +2019-06-03 19:00:00,52.36,251.94,37.04,45.03,10.56,1.08,72.37,38.11,19.56,1.71,12.75,0.11 +2019-06-03 20:00:00,49.48,231.78,41.91,42.29,12.36,1.14,62.41,40.24,19.42,1.94,15.92,0.08 +2019-06-03 21:00:00,50.8,219.23,41.11,39.46,12.31,1.13,60.09,39.94,19.5,2.12,20.81,0.11 +2019-06-03 22:00:00,50.19,210.59,39.95,37.38,13.36,1.1,54.5,39.43,20.04,1.99,14.07,0.1 +2019-06-03 23:00:00,44.41,177.37,35.15,36.86,14.25,1.03,60.14,37.2,20.38,1.95,11.03,0.1 +2019-06-04 00:00:00,41.65,156.23,34.24,37.28,13.89,1.0,55.79,36.83,20.32,1.71,9.97,0.08 +2019-06-04 01:00:00,41.14,137.67,34.45,37.17,16.03,0.99,50.8,37.2,21.59,1.73,9.42,0.09 +2019-06-04 02:00:00,43.6,123.99,29.39,39.09,13.75,0.86,57.52,25.87,15.13,1.55,7.64,0.08 +2019-06-04 03:00:00,40.79,107.18,23.73,32.87,14.19,0.85,54.77,17.98,6.09,1.32,7.32,0.1 +2019-06-04 04:00:00,43.21,130.21,23.99,29.7,12.97,0.92,51.4,18.59,6.19,1.57,8.91,0.09 +2019-06-04 05:00:00,51.21,180.52,26.21,28.8,14.19,0.99,47.07,20.53,6.9,2.06,15.02,0.08 +2019-06-04 06:00:00,50.22,152.06,27.94,27.78,14.17,0.98,43.85,21.05,7.24,2.01,13.2,0.09 +2019-06-04 07:00:00,48.08,129.53,30.45,27.36,15.37,0.92,45.71,23.35,7.69,1.74,7.69,0.09 +2019-06-04 08:00:00,45.6,120.58,29.68,28.67,14.91,0.98,48.6,23.34,8.13,1.73,13.13,0.09 +2019-06-04 09:00:00,45.78,138.8,26.84,29.6,13.9,0.96,54.43,20.99,7.52,1.66,13.56,0.1 +2019-06-04 10:00:00,51.19,162.08,28.24,32.34,13.71,1.03,61.86,25.11,15.07,1.67,21.76,0.08 +2019-06-04 11:00:00,64.45,185.19,27.5,36.44,13.25,1.03,73.03,30.19,16.86,1.8,7.4,0.08 +2019-06-04 12:00:00,57.89,185.56,29.04,37.82,12.6,1.05,87.78,30.65,17.57,1.85,9.36,0.07 +2019-06-04 13:00:00,56.12,185.93,25.7,35.53,12.05,0.98,92.17,30.71,20.01,2.01,9.71,0.08 +2019-06-04 14:00:00,56.13,183.09,25.31,35.24,11.46,1.03,97.87,28.19,16.46,1.48,8.14,0.07 +2019-06-04 15:00:00,53.27,172.59,24.87,35.98,11.99,1.04,98.09,32.8,20.84,1.54,7.36,0.07 +2019-06-04 16:00:00,54.97,167.63,27.13,37.45,12.58,1.01,106.3,32.42,19.43,1.38,7.98,0.1 +2019-06-04 17:00:00,58.73,171.16,29.11,37.56,12.14,1.09,114.1,32.67,17.37,1.55,14.74,0.1 +2019-06-04 18:00:00,55.86,176.59,37.76,38.12,12.0,1.11,105.76,36.54,16.29,1.87,15.3,0.09 +2019-06-04 19:00:00,59.17,189.0,49.77,37.94,12.3,1.37,79.12,42.81,16.82,2.25,24.64,0.1 +2019-06-04 20:00:00,64.08,213.58,66.52,37.21,12.77,1.74,51.25,54.55,19.77,3.77,47.36,0.16 +2019-06-04 21:00:00,70.98,243.27,70.28,36.42,14.22,1.84,37.36,59.54,23.27,5.13,48.76,0.25 +2019-06-04 22:00:00,82.63,258.68,70.62,36.73,16.96,1.79,32.15,55.14,19.7,4.49,40.74,0.68 +2019-06-04 23:00:00,82.1,246.86,65.34,31.12,16.58,1.7,32.85,46.66,12.02,4.43,36.83,0.52 +2019-06-05 00:00:00,78.8,230.8,62.15,31.75,15.55,1.56,29.73,44.19,11.12,3.92,25.57,0.36 +2019-06-05 01:00:00,79.56,215.25,56.33,33.08,18.21,1.43,31.12,41.23,11.07,3.65,27.07,0.29 +2019-06-05 02:00:00,79.23,210.82,54.58,36.15,20.04,1.34,26.21,42.05,13.19,3.98,26.5,0.19 +2019-06-05 03:00:00,87.82,217.23,47.9,36.44,20.74,1.29,34.22,38.05,12.68,4.3,26.09,0.2 +2019-06-05 04:00:00,90.01,200.75,43.3,32.89,16.79,1.21,38.28,33.21,10.11,3.93,21.78,0.19 +2019-06-05 05:00:00,81.44,183.34,37.04,31.07,16.05,1.12,36.76,27.29,7.98,3.44,17.72,0.14 +2019-06-05 06:00:00,72.08,167.22,37.78,30.66,15.0,1.08,34.32,27.81,8.3,3.14,16.55,0.14 +2019-06-05 07:00:00,71.32,174.98,41.59,30.37,15.74,1.17,34.05,32.53,10.85,3.15,15.27,0.15 +2019-06-05 08:00:00,75.76,194.21,37.48,32.7,16.27,1.28,38.96,28.5,8.87,3.13,14.37,0.15 +2019-06-05 09:00:00,80.82,201.83,32.74,33.49,16.07,1.2,53.54,24.27,7.27,3.08,13.17,0.13 +2019-06-05 10:00:00,78.98,210.15,29.67,34.2,15.69,1.17,74.18,22.04,6.7,2.89,10.74,0.12 +2019-06-05 11:00:00,80.5,213.83,26.95,36.66,15.17,1.1,86.9,21.98,9.83,2.68,9.65,0.14 +2019-06-05 12:00:00,74.85,203.12,25.29,42.18,14.83,1.03,98.15,24.23,16.46,2.34,9.13,0.11 +2019-06-05 13:00:00,68.6,193.48,23.62,40.49,15.58,1.11,109.66,21.22,5.78,2.29,10.17,0.09 +2019-06-05 14:00:00,65.86,189.63,22.54,39.9,16.67,1.11,115.05,25.77,14.33,2.38,13.56,0.1 +2019-06-05 15:00:00,62.61,184.88,21.53,39.42,16.71,0.99,115.12,27.08,17.47,1.77,11.93,0.13 +2019-06-05 16:00:00,60.49,177.49,21.71,37.33,14.62,0.98,108.67,28.59,16.93,1.69,14.62,0.12 +2019-06-05 17:00:00,55.12,173.95,24.2,38.2,13.71,0.96,95.89,29.15,16.25,1.68,23.26,0.15 +2019-06-05 18:00:00,54.74,174.56,30.02,39.33,12.97,0.99,83.5,32.02,15.7,2.18,21.44,0.12 +2019-06-05 19:00:00,53.62,179.12,41.02,37.77,13.63,1.05,71.4,35.88,13.98,2.41,28.17,0.13 +2019-06-05 20:00:00,63.72,204.41,64.7,37.4,15.18,1.59,41.36,51.99,17.78,3.45,29.35,0.16 +2019-06-05 21:00:00,72.44,253.58,79.86,38.92,15.56,2.08,28.53,71.28,30.31,4.85,34.17,0.22 +2019-06-05 22:00:00,83.84,305.36,81.11,34.57,14.95,2.14,24.49,71.58,33.29,4.7,38.87,0.31 +2019-06-05 23:00:00,88.26,349.36,81.09,31.84,14.05,1.97,24.64,70.61,30.15,4.47,35.62,0.3 +2019-06-06 00:00:00,88.83,345.66,69.41,32.76,14.87,1.58,33.55,59.68,24.91,4.03,28.16,0.27 +2019-06-06 01:00:00,79.73,257.7,54.92,31.42,14.75,1.18,33.28,40.85,11.48,3.08,21.74,0.12 +2019-06-06 02:00:00,70.06,184.14,50.04,32.28,13.9,1.1,25.56,36.71,9.94,2.78,24.48,0.13 +2019-06-06 03:00:00,65.85,168.22,54.47,33.19,12.72,1.17,19.19,45.47,17.55,2.76,24.54,0.12 +2019-06-06 04:00:00,68.39,169.94,54.81,31.28,13.87,1.23,17.75,53.66,26.58,2.79,27.78,0.12 +2019-06-06 05:00:00,70.81,178.38,53.79,30.08,13.26,1.36,17.18,61.72,36.17,3.06,31.52,0.15 +2019-06-06 06:00:00,72.95,192.33,51.85,30.21,13.13,1.27,17.58,66.11,43.96,3.77,32.6,0.17 +2019-06-06 07:00:00,80.05,229.71,53.98,30.74,15.15,1.43,18.1,70.13,47.04,4.23,35.79,0.18 +2019-06-06 08:00:00,93.39,276.81,62.74,33.64,21.81,1.52,30.7,64.13,35.09,4.52,30.01,0.21 +2019-06-06 09:00:00,106.28,296.17,61.94,33.74,26.52,1.42,45.64,54.96,23.3,4.2,27.73,0.29 +2019-06-06 10:00:00,90.45,256.01,54.98,32.98,26.73,1.24,60.03,45.42,17.18,3.55,22.52,0.26 +2019-06-06 11:00:00,73.38,215.76,44.13,42.6,25.34,1.11,73.17,38.77,15.98,2.71,18.2,0.15 +2019-06-06 12:00:00,60.6,184.94,39.73,44.39,22.99,1.13,93.94,32.51,11.88,2.81,14.6,0.11 +2019-06-06 13:00:00,57.16,182.83,37.33,44.73,19.25,0.97,112.74,28.0,8.54,2.23,13.33,0.11 +2019-06-06 14:00:00,64.69,192.32,34.36,44.22,18.67,0.97,124.14,36.6,18.64,2.05,11.94,0.11 +2019-06-06 15:00:00,68.45,199.86,32.33,39.75,16.41,0.94,122.25,34.68,18.49,2.14,14.08,0.1 +2019-06-06 16:00:00,59.49,205.17,30.83,39.14,14.31,0.88,108.37,34.76,20.54,1.96,13.3,0.12 +2019-06-06 17:00:00,57.45,239.26,31.52,37.31,11.94,0.8,90.09,34.05,22.05,1.88,14.65,0.11 +2019-06-06 18:00:00,56.97,281.85,35.05,36.63,10.42,0.9,85.36,37.08,22.61,2.34,29.28,0.14 +2019-06-06 19:00:00,64.59,319.9,34.59,38.26,12.21,1.06,77.82,34.01,17.57,2.29,37.96,0.29 +2019-06-06 20:00:00,82.41,419.51,29.05,35.59,12.04,0.98,76.89,31.81,17.18,2.04,35.63,0.14 +2019-06-06 21:00:00,64.79,315.66,32.96,33.26,12.03,0.93,63.65,35.57,19.17,1.97,30.69,0.0 +2019-06-06 22:00:00,50.51,217.11,33.27,29.71,11.66,0.91,62.79,24.24,6.59,1.83,17.57,0.0 +2019-06-06 23:00:00,47.29,145.52,38.42,28.59,13.66,0.95,55.13,28.27,7.88,2.13,16.54,0.0 +2019-06-07 00:00:00,46.98,116.92,40.71,29.51,16.46,0.91,51.41,31.73,10.08,2.23,14.18,0.0 +2019-06-07 01:00:00,41.75,96.69,31.76,29.38,13.96,0.84,51.79,27.14,10.71,1.64,10.92,0.0 +2019-06-07 02:00:00,38.64,86.39,29.1,29.66,12.44,0.79,48.91,26.72,12.51,1.36,8.98,0.0 +2019-06-07 03:00:00,34.57,74.82,24.12,30.75,11.34,0.76,50.54,20.39,8.08,1.29,8.11,0.0 +2019-06-07 04:00:00,32.29,67.68,24.38,28.18,12.18,0.74,46.16,20.1,7.55,1.2,7.23,0.0 +2019-06-07 05:00:00,36.23,71.54,24.54,26.87,13.39,0.74,40.09,20.3,7.01,1.21,7.26,0.01 +2019-06-07 06:00:00,35.6,83.0,31.3,26.34,12.44,0.78,31.95,25.63,9.01,1.29,7.19,0.0 +2019-06-07 07:00:00,37.44,103.88,34.35,27.0,12.84,0.94,31.59,29.18,11.28,1.63,8.17,0.0 +2019-06-07 08:00:00,40.93,117.68,32.81,28.2,14.07,0.98,41.25,28.61,11.38,1.72,9.04,0.02 +2019-06-07 09:00:00,46.19,134.05,31.58,29.37,15.3,1.02,51.85,26.84,10.32,1.89,8.38,0.01 +2019-06-07 10:00:00,55.35,165.12,32.07,30.46,17.1,1.08,69.17,28.51,11.57,2.19,9.68,0.0 +2019-06-07 11:00:00,64.0,184.97,32.69,34.59,17.97,1.09,92.26,32.37,15.71,2.47,13.62,0.0 +2019-06-07 12:00:00,66.88,198.5,31.87,35.45,17.49,1.15,118.2,35.07,17.92,2.94,15.15,0.0 +2019-06-07 13:00:00,71.49,202.38,32.79,38.98,17.39,1.17,130.56,36.26,19.2,2.99,24.52,0.0 +2019-06-07 14:00:00,72.21,208.98,32.67,35.52,17.16,1.4,133.95,33.44,16.73,4.1,18.23,0.0 +2019-06-07 15:00:00,74.86,221.09,32.51,34.96,17.13,1.15,137.45,34.33,16.63,2.55,21.65,0.0 +2019-06-07 16:00:00,70.88,211.61,29.56,34.46,15.41,1.09,119.92,32.88,16.54,2.37,28.67,0.0 +2019-06-07 17:00:00,67.68,197.26,27.61,34.57,15.0,1.01,117.04,30.75,17.02,1.99,33.35,0.0 +2019-06-07 18:00:00,60.76,176.75,29.38,34.16,12.97,1.01,110.09,32.46,17.19,1.97,34.99,0.0 +2019-06-07 19:00:00,56.4,162.16,34.86,36.22,12.16,1.23,97.32,35.26,16.24,2.13,19.82,0.0 +2019-06-07 20:00:00,57.95,172.58,42.85,36.01,11.81,1.4,77.16,39.65,17.0,2.42,34.59,0.0 +2019-06-07 21:00:00,61.42,186.99,53.16,35.18,12.33,1.48,55.59,46.58,17.94,3.18,35.4,0.0 +2019-06-07 22:00:00,68.3,203.9,63.18,35.15,14.16,1.84,41.36,53.25,20.3,3.76,28.24,0.08 +2019-06-07 23:00:00,76.65,212.49,67.77,35.86,14.13,2.14,33.25,58.22,22.7,3.88,25.98,0.16 +2019-06-08 00:00:00,78.4,208.94,70.66,37.03,12.85,1.9,29.68,63.14,27.2,3.43,23.21,0.15 +2019-06-08 01:00:00,78.52,204.45,62.6,32.97,12.02,1.34,28.25,48.42,13.73,3.08,26.31,0.15 +2019-06-08 02:00:00,79.29,190.6,57.5,35.01,11.88,1.23,30.71,43.7,12.08,2.76,23.13,0.1 +2019-06-08 03:00:00,78.33,170.95,54.76,35.9,12.04,1.19,29.27,42.92,12.92,2.5,16.08,0.04 +2019-06-08 04:00:00,73.54,160.05,55.07,33.66,12.73,1.27,24.82,43.12,11.86,2.46,15.97,0.06 +2019-06-08 05:00:00,78.8,166.87,53.18,34.44,14.28,1.25,23.1,42.05,14.25,2.55,20.08,0.0 +2019-06-08 06:00:00,81.21,177.77,55.27,35.11,15.08,1.27,22.0,47.74,18.73,2.8,18.48,0.01 +2019-06-08 07:00:00,83.17,202.82,56.15,36.9,14.75,1.27,26.33,49.58,20.06,2.81,18.52,0.0 +2019-06-08 08:00:00,84.18,213.72,45.56,36.71,13.99,1.3,43.26,38.68,14.71,2.69,14.86,0.0 +2019-06-08 09:00:00,77.68,194.37,38.84,37.66,13.99,1.17,61.61,33.95,13.51,2.14,11.1,0.0 +2019-06-08 10:00:00,68.17,178.21,34.46,44.05,13.73,1.18,83.35,33.28,18.45,2.0,9.86,0.01 +2019-06-08 11:00:00,61.54,171.08,30.74,56.91,14.65,1.1,101.48,24.75,9.89,1.82,7.14,0.01 +2019-06-08 12:00:00,56.05,144.76,27.64,54.51,14.27,1.08,113.75,22.25,8.7,1.62,12.49,0.0 +2019-06-08 13:00:00,47.12,123.9,28.03,48.92,13.49,1.17,122.78,22.16,8.6,1.71,17.61,0.0 +2019-06-08 14:00:00,45.9,126.2,27.31,46.83,10.85,0.83,127.09,21.31,8.4,1.62,17.17,0.0 +2019-06-08 15:00:00,50.06,133.04,29.85,45.94,11.96,0.87,127.8,23.87,9.02,1.47,21.02,0.02 +2019-06-08 16:00:00,51.52,142.83,26.28,44.75,12.62,0.89,123.45,20.59,7.73,1.47,25.2,0.0 +2019-06-08 17:00:00,49.61,148.59,29.3,34.07,12.05,0.85,114.21,26.48,11.49,1.53,26.66,0.0 +2019-06-08 18:00:00,48.77,149.79,33.44,30.44,11.73,0.92,102.39,29.2,11.92,1.79,23.4,0.0 +2019-06-08 19:00:00,47.02,159.03,46.73,29.36,12.0,1.15,78.12,37.82,13.65,2.22,24.94,0.0 +2019-06-08 20:00:00,54.67,193.23,76.16,29.62,12.76,1.78,39.62,63.88,22.69,3.79,42.18,0.03 +2019-06-08 21:00:00,81.74,264.75,92.05,36.51,14.19,2.94,22.98,113.06,58.56,6.14,58.97,0.12 +2019-06-08 22:00:00,104.3,322.57,96.83,35.81,16.67,3.64,22.39,148.31,99.27,7.82,64.65,0.4 +2019-06-08 23:00:00,114.32,354.45,95.57,39.08,18.77,3.62,28.9,163.56,114.66,8.71,72.34,0.74 +2019-06-09 00:00:00,112.12,334.16,91.74,39.5,17.61,3.52,23.52,161.22,126.59,8.63,67.98,1.05 +2019-06-09 01:00:00,111.4,330.16,85.31,39.29,15.25,3.01,17.56,168.98,136.92,8.32,60.27,0.95 +2019-06-09 02:00:00,105.66,299.3,83.43,38.37,16.23,2.77,18.74,166.89,136.5,8.6,57.55,0.71 +2019-06-09 03:00:00,106.01,270.01,78.48,40.83,21.24,2.59,17.43,153.43,125.34,8.12,70.63,0.57 +2019-06-09 04:00:00,105.73,262.07,77.28,37.44,20.3,2.33,21.22,139.15,115.1,7.63,69.32,0.6 +2019-06-09 05:00:00,103.93,248.58,69.52,35.95,16.59,2.0,26.97,136.39,112.6,7.38,66.91,0.53 +2019-06-09 06:00:00,104.97,257.21,67.0,37.24,17.75,1.85,21.95,129.84,106.46,7.92,59.73,0.48 +2019-06-09 07:00:00,115.64,293.52,72.14,39.62,23.95,1.96,20.73,114.84,85.76,7.87,50.71,0.46 +2019-06-09 08:00:00,132.73,333.98,80.22,41.0,38.91,1.68,30.55,89.4,51.47,7.12,41.58,0.46 +2019-06-09 09:00:00,167.77,371.13,77.99,44.43,44.98,1.55,63.96,67.87,26.92,6.92,31.75,0.27 +2019-06-09 10:00:00,197.07,411.16,73.53,44.8,45.28,1.6,122.37,56.32,14.89,7.32,30.85,0.12 +2019-06-09 11:00:00,190.09,405.59,50.03,40.6,38.26,1.32,139.28,39.77,12.66,6.28,29.14,0.1 +2019-06-09 12:00:00,133.2,319.75,36.89,38.52,28.39,1.04,141.06,28.86,9.03,4.9,26.24,0.01 +2019-06-09 13:00:00,85.31,219.8,28.3,34.57,20.68,0.91,136.34,21.95,6.55,3.46,17.59,0.0 +2019-06-09 14:00:00,60.83,167.32,24.74,31.3,16.16,0.89,133.59,19.92,6.95,2.6,15.67,0.0 +2019-06-09 15:00:00,57.16,146.78,24.31,30.62,15.25,0.84,126.78,20.03,7.28,2.14,17.57,0.0 +2019-06-09 16:00:00,57.35,148.46,25.75,29.81,14.37,0.89,125.58,20.97,7.12,2.13,17.75,0.0 +2019-06-09 17:00:00,53.68,147.05,25.84,30.65,12.89,0.83,123.04,20.65,6.86,2.01,20.69,0.0 +2019-06-09 18:00:00,47.43,141.5,31.12,31.05,12.65,0.91,115.14,23.95,7.01,1.9,15.57,0.0 +2019-06-09 19:00:00,48.92,148.37,42.78,29.92,14.06,1.1,95.57,30.07,6.75,2.38,17.75,0.0 +2019-06-09 20:00:00,58.49,188.08,71.54,29.85,15.6,1.69,54.2,54.56,15.69,3.65,32.23,0.0 +2019-06-09 21:00:00,72.21,259.04,91.91,29.76,18.36,2.64,31.11,95.08,49.53,5.58,37.83,0.04 +2019-06-09 22:00:00,94.05,313.42,97.83,31.23,18.17,3.17,22.74,128.89,83.98,6.82,43.31,0.09 +2019-06-09 23:00:00,103.56,346.38,100.38,31.47,18.73,3.57,29.96,154.4,115.87,7.49,45.7,0.24 +2019-06-10 00:00:00,105.06,333.99,100.55,43.57,18.34,3.42,22.54,161.41,109.9,7.83,46.49,0.27 +2019-06-10 01:00:00,108.57,318.18,88.37,36.57,16.61,2.76,31.35,136.78,98.82,8.1,50.15,0.2 +2019-06-10 02:00:00,105.38,284.81,83.91,38.0,16.41,2.21,23.99,119.59,83.1,7.61,46.87,0.1 +2019-06-10 03:00:00,93.86,247.46,81.02,39.48,16.84,1.78,22.52,108.45,71.94,6.5,40.0,0.11 +2019-06-10 04:00:00,89.73,223.7,73.23,35.92,16.87,1.52,21.29,94.33,59.92,5.93,38.89,0.1 +2019-06-10 05:00:00,80.08,205.13,67.31,33.37,15.98,1.31,17.61,82.11,50.49,5.08,33.34,0.1 +2019-06-10 06:00:00,78.67,204.18,67.87,35.28,16.01,1.45,15.09,91.45,61.65,4.56,30.05,0.08 +2019-06-10 07:00:00,87.1,229.51,71.51,35.19,16.38,1.68,17.66,91.14,59.18,4.61,27.51,0.07 +2019-06-10 08:00:00,85.57,269.48,73.11,36.2,19.02,1.49,31.47,81.55,45.38,4.55,29.56,0.04 +2019-06-10 09:00:00,84.31,256.41,64.19,39.12,20.07,1.27,56.64,60.07,27.57,4.04,21.2,0.01 +2019-06-10 10:00:00,84.88,250.15,59.07,45.39,21.0,1.29,89.63,54.29,23.46,3.66,14.57,0.0 +2019-06-10 11:00:00,82.14,245.21,37.0,81.64,12.09,1.06,105.38,40.99,19.2,3.63,6.08,0.0 +2019-06-10 12:00:00,57.8,182.43,29.79,46.36,14.18,0.87,114.19,25.57,9.65,2.32,17.37,0.0 +2019-06-10 13:00:00,52.57,172.72,27.92,43.94,13.46,0.87,119.74,23.57,8.57,2.05,29.11,0.01 +2019-06-10 14:00:00,51.36,172.67,25.67,29.24,11.66,0.82,109.28,20.3,10.13,1.83,16.52,0.04 +2019-06-10 15:00:00,48.56,166.14,25.09,27.8,10.36,0.71,103.12,19.51,7.41,2.04,21.52,0.15 +2019-06-10 16:00:00,43.93,185.55,24.56,26.87,10.62,0.74,96.47,22.01,8.88,1.71,24.78,0.15 +2019-06-10 17:00:00,44.26,189.88,27.65,30.39,10.94,0.72,95.42,32.82,19.43,1.55,20.67,0.15 +2019-06-10 18:00:00,42.1,178.68,33.76,30.98,11.07,0.81,90.66,36.06,18.04,1.71,22.76,0.15 +2019-06-10 19:00:00,41.33,173.49,52.61,28.15,11.75,1.13,66.84,44.35,20.63,2.24,36.17,0.2 +2019-06-10 20:00:00,50.02,203.66,79.74,27.72,13.53,1.82,35.38,68.58,27.86,3.71,53.92,0.27 +2019-06-10 21:00:00,76.44,255.44,89.11,27.93,15.22,2.73,22.11,102.88,62.18,6.06,59.34,0.26 +2019-06-10 22:00:00,94.63,315.83,95.13,29.65,16.68,3.17,17.55,144.12,104.76,6.59,75.5,0.44 +2019-06-10 23:00:00,99.19,339.04,98.49,30.7,19.46,3.58,16.84,162.36,123.5,6.87,73.74,0.81 +2019-06-11 00:00:00,98.85,355.34,95.74,37.03,19.97,3.56,15.95,168.01,145.31,6.84,71.0,0.92 +2019-06-11 01:00:00,101.22,340.7,90.92,37.26,17.66,3.11,15.6,178.29,148.64,7.02,68.78,0.97 +2019-06-11 02:00:00,101.98,317.17,77.02,40.78,18.76,1.99,21.91,117.79,86.12,6.68,60.5,0.77 +2019-06-11 03:00:00,95.84,381.48,49.19,33.49,14.28,0.98,30.41,50.41,26.1,4.16,36.65,0.85 +2019-06-11 04:00:00,110.69,624.18,40.92,27.7,12.55,0.83,40.85,40.31,20.15,2.4,23.26,0.48 +2019-06-11 05:00:00,134.39,711.03,42.34,25.61,13.82,0.74,40.64,42.82,23.05,2.1,20.95,0.27 +2019-06-11 06:00:00,157.88,787.88,39.16,25.93,14.7,0.79,18.69,44.88,27.33,2.0,19.57,0.16 +2019-06-11 07:00:00,188.86,830.5,39.14,25.22,11.56,0.93,18.83,43.69,25.34,1.81,16.56,0.15 +2019-06-11 08:00:00,204.29,834.09,44.62,27.46,13.57,1.14,22.53,47.92,26.67,2.17,15.11,0.15 +2019-06-11 09:00:00,217.37,786.94,48.85,28.43,18.09,1.13,34.83,45.34,20.18,2.76,15.04,0.16 +2019-06-11 10:00:00,234.44,767.09,47.33,29.38,19.72,1.15,45.63,43.06,18.07,3.06,16.23,0.13 +2019-06-11 11:00:00,223.99,829.95,36.2,34.1,14.43,0.91,49.05,42.41,24.23,2.67,15.82,0.14 +2019-06-11 12:00:00,167.28,736.05,28.38,34.06,11.21,0.77,65.03,37.27,24.57,2.17,25.51,0.17 +2019-06-11 13:00:00,117.15,538.97,27.18,32.82,9.3,0.83,69.64,33.35,23.0,1.53,17.98,0.09 +2019-06-11 14:00:00,83.09,299.36,24.41,32.01,8.28,0.74,66.72,32.42,22.69,1.39,30.4,0.11 +2019-06-11 15:00:00,57.1,195.99,24.53,34.1,8.21,0.74,66.76,35.44,11.21,1.22,17.93,0.17 +2019-06-11 16:00:00,57.12,244.91,31.55,30.05,9.17,0.72,61.24,29.08,15.44,1.88,18.11,0.09 +2019-06-11 17:00:00,59.38,281.21,27.91,33.62,8.98,0.79,72.41,26.47,13.69,1.39,20.4,0.08 +2019-06-11 18:00:00,52.5,233.84,30.64,33.21,9.45,0.82,68.13,27.33,13.99,1.38,16.74,0.1 +2019-06-11 19:00:00,53.64,231.96,50.76,32.13,10.49,1.11,44.39,45.14,22.68,2.02,20.62,0.17 +2019-06-11 20:00:00,57.95,263.48,72.0,32.91,12.49,1.75,23.55,75.89,43.45,4.51,35.5,0.24 +2019-06-11 21:00:00,76.53,348.74,75.27,33.88,14.12,2.42,19.82,101.53,71.14,6.1,49.62,0.43 +2019-06-11 22:00:00,90.81,380.62,75.3,34.39,16.13,2.87,23.45,127.27,102.15,6.72,60.19,0.51 +2019-06-11 23:00:00,98.87,385.09,77.31,36.18,17.44,2.91,23.02,140.2,116.16,7.8,60.76,0.79 +2019-06-12 00:00:00,96.17,391.67,74.46,36.37,17.76,2.16,20.66,106.56,80.09,6.43,46.52,0.97 +2019-06-12 01:00:00,89.85,364.01,58.58,29.81,16.87,1.45,19.76,69.64,42.14,4.68,39.8,1.04 +2019-06-12 02:00:00,83.26,332.39,37.54,30.87,14.14,1.08,41.27,36.0,17.91,3.9,32.59,0.71 +2019-06-12 03:00:00,78.0,290.39,25.24,29.8,11.99,0.74,50.71,21.93,10.0,2.83,16.69,0.29 +2019-06-12 04:00:00,56.91,177.36,24.3,27.14,12.85,0.74,50.56,20.49,8.59,1.98,10.33,0.14 +2019-06-12 05:00:00,41.66,122.84,26.82,25.58,12.17,0.65,45.88,21.43,7.98,1.83,10.51,0.13 +2019-06-12 06:00:00,30.84,100.73,28.41,25.32,11.31,0.73,47.37,21.91,7.34,1.45,11.68,0.22 +2019-06-12 07:00:00,41.55,149.37,27.42,27.07,11.44,0.89,48.14,20.96,6.67,1.61,10.63,0.11 +2019-06-12 08:00:00,58.24,248.86,25.38,28.23,11.49,0.82,51.67,20.94,7.83,1.8,8.31,0.13 +2019-06-12 09:00:00,53.97,303.64,24.02,30.43,12.24,0.78,59.72,20.32,7.76,1.28,8.21,0.12 +2019-06-12 10:00:00,46.54,292.93,26.61,38.78,13.25,0.77,66.55,22.06,8.89,1.17,6.97,0.11 +2019-06-12 11:00:00,49.94,325.09,27.45,45.76,13.53,0.74,75.36,19.7,6.72,1.32,8.96,0.16 +2019-06-12 12:00:00,55.32,287.54,26.57,46.87,12.23,0.88,79.68,19.27,6.76,1.32,10.46,0.27 +2019-06-12 13:00:00,54.56,254.64,24.54,43.24,11.26,0.92,87.61,20.05,8.6,1.79,9.63,0.08 +2019-06-12 14:00:00,53.52,198.59,22.22,32.05,10.67,0.86,89.67,18.11,6.99,1.38,7.6,0.11 +2019-06-12 15:00:00,51.04,173.67,23.2,37.66,10.25,0.87,93.29,25.07,18.19,1.56,7.41,0.12 +2019-06-12 16:00:00,50.03,160.22,24.99,43.74,9.93,0.92,97.0,29.27,18.13,1.2,7.34,0.1 +2019-06-12 17:00:00,48.42,152.79,24.19,43.88,9.81,0.95,97.24,30.01,21.05,1.26,8.15,0.08 +2019-06-12 18:00:00,47.56,156.32,27.85,40.4,10.62,0.96,95.79,25.79,11.75,1.67,22.17,0.12 +2019-06-12 19:00:00,52.86,180.25,33.93,38.34,9.95,0.92,77.29,30.17,12.93,1.92,16.96,0.44 +2019-06-12 20:00:00,96.18,345.19,27.43,36.1,9.15,0.86,58.76,32.19,19.36,1.57,12.77,0.18 +2019-06-12 21:00:00,95.44,278.07,32.02,34.44,8.3,0.82,43.68,37.62,23.21,1.29,9.34,0.47 +2019-06-12 22:00:00,47.71,162.33,30.05,34.18,8.02,0.88,43.96,33.47,19.74,1.1,10.03,0.26 +2019-06-12 23:00:00,56.97,332.12,27.83,33.48,8.35,0.8,49.38,31.68,18.61,1.27,14.47,0.42 +2019-06-13 00:00:00,66.62,382.72,31.45,32.49,8.34,0.88,47.25,33.24,18.03,1.48,13.17,0.42 +2019-06-13 01:00:00,53.53,270.03,28.44,32.61,9.52,0.88,42.71,31.69,16.93,1.51,16.13,0.19 +2019-06-13 02:00:00,47.6,192.99,30.91,28.15,10.11,0.91,32.26,24.41,7.62,1.42,12.05,0.23 +2019-06-13 03:00:00,46.05,167.7,30.88,29.1,11.09,0.84,32.48,23.04,6.52,1.56,14.35,0.13 +2019-06-13 04:00:00,47.63,161.0,32.79,27.11,11.84,0.79,28.57,25.23,7.78,1.86,13.09,0.24 +2019-06-13 05:00:00,50.87,154.04,35.93,25.75,12.61,0.84,24.92,28.89,10.11,1.83,13.91,0.3 +2019-06-13 06:00:00,51.14,161.21,40.8,25.85,13.07,0.88,22.37,36.12,14.65,1.77,12.72,0.77 +2019-06-13 07:00:00,55.43,183.05,48.81,28.03,13.05,1.16,21.53,50.75,26.15,2.08,15.84,0.52 +2019-06-13 08:00:00,62.32,223.01,47.38,30.2,14.74,1.05,30.96,47.53,23.41,2.36,16.07,0.39 +2019-06-13 09:00:00,69.06,236.56,40.32,29.3,17.38,1.01,44.33,36.91,16.01,2.2,13.66,0.11 +2019-06-13 10:00:00,59.44,206.88,32.6,35.74,15.04,0.99,60.01,31.81,16.08,1.84,14.41,0.13 +2019-06-13 11:00:00,49.97,173.34,28.88,38.39,11.84,0.88,72.07,25.48,11.29,1.71,13.13,0.13 +2019-06-13 12:00:00,46.83,152.29,26.51,37.92,10.85,0.9,85.17,22.45,9.08,1.65,16.01,0.1 +2019-06-13 13:00:00,45.24,135.59,20.9,28.78,10.74,0.87,83.48,20.59,8.9,1.2,15.0,0.09 +2019-06-13 14:00:00,37.68,111.26,19.08,27.89,9.19,0.79,84.79,19.88,9.13,1.29,12.65,0.11 +2019-06-13 15:00:00,36.79,108.23,18.01,29.54,9.37,0.79,86.01,18.37,7.92,1.07,15.33,0.07 +2019-06-13 16:00:00,38.74,124.53,18.85,29.25,9.43,0.8,88.01,18.53,8.54,1.12,15.1,0.11 +2019-06-13 17:00:00,43.42,145.68,19.37,29.87,10.29,0.78,88.68,20.04,9.7,1.05,10.31,0.14 +2019-06-13 18:00:00,47.38,165.66,24.49,29.88,10.43,0.87,83.71,23.97,10.86,1.28,11.47,0.26 +2019-06-13 19:00:00,49.14,176.87,35.27,28.05,10.89,1.12,64.28,30.69,12.19,1.63,18.17,0.27 +2019-06-13 20:00:00,55.34,209.04,54.09,28.21,12.9,1.5,44.18,47.18,18.75,2.44,27.26,0.11 +2019-06-13 21:00:00,64.09,239.53,61.85,29.29,13.35,1.93,35.18,52.07,18.78,3.92,37.53,0.2 +2019-06-13 22:00:00,72.47,246.97,58.02,30.23,13.48,2.01,33.58,49.53,18.09,5.35,39.87,0.92 +2019-06-13 23:00:00,67.08,224.27,43.08,28.44,13.3,1.31,33.86,36.61,13.29,3.44,29.27,0.98 +2019-06-14 00:00:00,49.87,165.14,34.06,28.43,12.7,1.09,34.04,30.41,12.44,1.94,25.23,1.42 +2019-06-14 01:00:00,49.54,156.63,34.28,27.68,13.52,0.92,28.74,31.04,13.64,1.9,20.44,3.16 +2019-06-14 02:00:00,57.79,166.8,29.29,29.01,14.56,0.84,30.6,24.7,9.1,1.97,19.09,3.12 +2019-06-14 03:00:00,50.08,142.29,24.83,28.27,13.31,0.79,29.83,21.9,8.17,1.73,17.53,1.13 +2019-06-14 04:00:00,41.69,122.77,24.76,27.46,12.96,0.74,27.69,23.9,10.8,1.62,14.83,0.2 +2019-06-14 05:00:00,42.6,122.95,23.74,24.72,13.48,0.74,26.52,23.39,11.4,1.81,13.55,0.1 +2019-06-14 06:00:00,46.16,135.16,27.73,24.42,13.62,0.8,23.51,29.46,16.57,1.88,10.26,0.25 +2019-06-14 07:00:00,49.58,154.71,28.3,25.04,14.06,0.86,23.94,31.31,17.69,2.06,10.64,0.42 +2019-06-14 08:00:00,53.76,188.05,27.04,25.65,14.54,0.91,33.05,33.47,20.11,2.06,12.15,0.23 +2019-06-14 09:00:00,53.45,204.74,25.94,25.87,14.21,1.01,48.22,28.62,16.17,1.86,10.33,0.26 +2019-06-14 10:00:00,54.71,216.52,27.11,26.33,13.13,0.83,68.87,28.58,15.31,1.85,11.16,0.24 +2019-06-14 11:00:00,56.86,218.95,24.87,26.15,12.14,0.85,88.15,23.49,10.62,1.88,11.61,0.14 +2019-06-14 12:00:00,57.83,208.08,22.99,24.34,10.34,0.75,98.94,22.33,10.45,1.7,14.1,0.12 +2019-06-14 13:00:00,53.86,193.34,21.77,23.66,10.01,0.79,104.76,19.81,7.9,1.38,19.07,0.12 +2019-06-14 14:00:00,52.84,193.92,21.65,20.26,9.96,0.75,105.27,21.5,10.14,1.31,9.87,0.07 +2019-06-14 15:00:00,52.73,198.3,20.17,19.1,9.23,0.74,107.98,18.45,7.66,1.25,11.24,0.09 +2019-06-14 16:00:00,50.88,194.9,22.47,19.2,9.69,0.72,111.43,23.46,11.08,1.22,17.43,0.11 +2019-06-14 17:00:00,53.82,196.59,23.73,19.39,10.68,0.75,114.6,22.4,9.98,1.46,20.87,0.4 +2019-06-14 18:00:00,49.91,177.12,28.61,20.01,12.02,0.93,108.96,25.83,10.32,1.61,18.92,0.02 +2019-06-14 19:00:00,45.53,168.93,43.67,19.87,11.42,0.96,87.88,36.36,13.02,1.75,34.16,0.1 +2019-06-14 20:00:00,49.54,187.45,70.81,19.64,12.73,1.49,53.2,57.71,19.72,2.95,41.55,0.27 +2019-06-14 21:00:00,60.3,242.85,92.18,20.82,14.59,2.16,28.86,84.08,37.52,4.72,44.14,0.63 +2019-06-14 22:00:00,75.86,279.9,94.28,21.59,16.54,2.54,19.5,108.04,61.61,6.56,53.46,1.1 +2019-06-14 23:00:00,81.85,280.84,95.47,23.48,19.98,2.73,18.96,130.84,86.64,7.15,53.56,0.99 +2019-06-15 00:00:00,87.34,283.52,88.07,25.79,23.22,2.61,20.37,117.73,76.77,7.1,53.09,1.35 +2019-06-15 01:00:00,91.36,285.43,78.21,25.75,22.23,2.06,20.78,103.16,64.97,7.15,49.02,1.8 +2019-06-15 02:00:00,91.5,260.16,74.01,26.49,21.65,1.8,19.98,100.15,66.84,6.1,42.39,1.07 +2019-06-15 03:00:00,99.09,271.46,76.5,26.92,21.77,1.5,18.25,97.97,64.02,6.44,40.26,0.84 +2019-06-15 04:00:00,99.96,251.84,70.51,25.65,28.03,1.18,18.31,70.79,36.0,6.08,41.72,0.96 +2019-06-15 05:00:00,102.17,247.49,59.82,24.1,24.92,1.0,22.78,52.99,22.22,4.74,32.48,1.1 +2019-06-15 06:00:00,90.94,229.36,61.69,22.67,22.92,1.04,18.38,59.54,29.54,4.32,23.18,1.22 +2019-06-15 07:00:00,88.8,247.52,62.28,24.33,26.56,1.2,20.95,64.23,34.13,4.33,21.1,1.3 +2019-06-15 08:00:00,105.39,298.91,60.53,27.24,31.0,1.26,34.76,60.8,31.53,4.44,20.05,0.56 +2019-06-15 09:00:00,120.32,312.66,48.6,25.08,30.16,1.16,68.12,43.0,17.98,4.01,17.48,0.61 +2019-06-15 10:00:00,104.64,299.49,37.11,23.99,24.16,1.0,96.56,34.03,15.0,3.54,15.26,0.31 +2019-06-15 11:00:00,77.93,267.9,28.61,22.63,17.63,0.94,111.52,29.62,15.32,3.03,17.62,0.08 +2019-06-15 12:00:00,63.75,256.33,24.82,22.03,15.11,0.76,114.36,22.53,9.49,2.57,16.95,0.32 +2019-06-15 13:00:00,71.36,269.01,22.48,22.09,12.71,0.84,105.22,20.49,8.48,1.76,21.25,0.16 +2019-06-15 14:00:00,70.87,305.43,20.8,21.46,9.96,0.75,97.8,19.51,8.32,2.2,17.13,0.21 +2019-06-15 15:00:00,75.0,322.49,20.63,21.84,8.45,0.86,96.36,20.85,10.09,1.65,17.97,0.26 +2019-06-15 16:00:00,69.47,306.24,21.02,22.73,8.43,0.82,96.53,21.16,9.94,1.39,25.36,0.15 +2019-06-15 17:00:00,63.45,276.0,23.21,23.46,9.29,0.88,89.52,22.47,10.52,1.33,19.25,0.25 +2019-06-15 18:00:00,57.19,254.2,27.09,23.72,8.91,0.99,83.42,25.48,11.61,1.89,18.1,0.22 +2019-06-15 19:00:00,55.16,240.22,41.37,23.47,9.75,1.14,65.76,38.31,17.45,2.28,24.63,0.33 +2019-06-15 20:00:00,59.49,251.07,63.82,23.25,11.97,1.34,37.42,55.9,23.23,3.53,31.59,1.12 +2019-06-15 21:00:00,71.92,293.15,55.18,23.76,12.28,1.3,36.1,50.43,21.91,4.73,46.37,0.52 +2019-06-15 22:00:00,77.98,309.45,35.29,22.2,10.4,1.0,42.19,33.37,15.35,2.65,27.03,1.09 +2019-06-15 23:00:00,69.47,252.93,29.98,21.6,9.92,0.99,42.49,28.02,12.53,1.81,21.12,0.13 +2019-06-16 00:00:00,58.51,225.02,24.51,22.52,10.44,0.79,45.79,23.17,10.88,1.51,15.62,0.13 +2019-06-16 01:00:00,57.51,250.18,19.85,21.8,9.76,0.74,50.58,18.88,8.35,1.33,15.25,0.51 +2019-06-16 02:00:00,68.42,380.9,16.72,23.31,8.9,0.72,52.95,17.12,8.96,1.03,9.1,0.08 +2019-06-16 03:00:00,73.85,374.5,17.53,23.16,9.57,0.59,56.73,18.38,9.21,0.98,10.43,0.15 +2019-06-16 04:00:00,64.53,314.47,17.28,22.42,10.24,0.6,52.17,18.01,9.15,0.72,11.53,0.23 +2019-06-16 05:00:00,42.76,114.12,16.66,21.68,10.68,0.59,46.21,18.26,9.59,0.77,9.69,0.11 +2019-06-16 06:00:00,35.29,87.83,20.1,21.63,10.05,0.69,39.9,23.27,13.46,0.8,9.37,0.14 +2019-06-16 07:00:00,33.58,81.5,20.66,22.54,10.91,0.69,36.33,22.94,12.82,0.98,8.95,0.15 +2019-06-16 08:00:00,34.17,93.25,18.19,23.37,10.89,0.78,39.81,20.73,12.04,1.03,6.65,0.14 +2019-06-16 09:00:00,38.38,120.4,18.52,23.37,10.28,0.92,45.7,24.01,15.71,0.97,9.17,0.17 +2019-06-16 10:00:00,45.67,184.09,20.39,24.15,9.3,0.82,45.35,27.05,18.08,1.01,13.95,0.16 +2019-06-16 11:00:00,42.99,247.74,21.25,23.1,8.84,0.81,43.85,21.99,11.62,0.86,13.5,0.3 +2019-06-16 12:00:00,29.29,94.79,23.48,23.75,9.6,0.88,36.78,24.78,13.27,1.33,15.31,0.4 +2019-06-16 13:00:00,31.19,82.79,24.56,25.52,9.34,0.94,35.01,24.7,12.54,1.48,19.55,0.65 +2019-06-16 14:00:00,27.61,79.64,22.61,26.35,10.3,0.91,45.49,22.79,11.2,1.3,17.92,0.4 +2019-06-16 15:00:00,28.09,81.27,19.04,27.18,10.26,0.86,61.05,18.88,9.18,1.26,15.42,0.13 +2019-06-16 16:00:00,28.92,92.23,17.76,27.64,9.49,0.78,65.38,18.3,9.65,0.93,13.03,0.0 +2019-06-16 17:00:00,27.56,97.8,16.35,27.89,8.66,0.77,63.77,18.55,10.13,0.89,9.45,0.11 +2019-06-16 18:00:00,35.54,111.09,16.8,28.37,8.03,0.78,61.4,20.48,11.74,0.8,11.42,0.06 +2019-06-16 19:00:00,34.74,136.74,18.16,27.0,7.97,0.79,52.91,20.72,11.24,0.87,10.84,0.02 +2019-06-16 20:00:00,43.3,186.38,21.07,25.61,8.52,0.84,45.78,21.82,11.18,1.12,9.31,0.01 +2019-06-16 21:00:00,45.33,178.83,25.99,26.59,8.79,0.9,40.43,26.11,12.63,1.22,12.25,0.0 +2019-06-16 22:00:00,40.13,127.5,27.84,26.28,8.91,0.95,31.99,26.42,12.9,1.26,11.42,0.0 +2019-06-16 23:00:00,42.2,119.98,28.23,31.46,9.16,0.95,28.13,26.5,12.43,1.37,12.25,0.0 +2019-06-17 00:00:00,41.03,115.71,26.84,32.82,9.64,0.86,27.36,26.11,13.11,1.31,12.09,0.0 +2019-06-17 01:00:00,43.84,128.27,22.16,29.27,9.79,0.83,28.97,19.56,8.37,1.39,12.84,0.0 +2019-06-17 02:00:00,46.24,134.07,19.3,29.59,9.64,0.76,33.09,17.94,8.41,1.19,8.49,0.34 +2019-06-17 03:00:00,40.54,114.79,19.72,30.69,11.03,0.69,33.69,18.41,8.99,0.97,8.15,0.42 +2019-06-17 04:00:00,36.14,96.34,20.38,27.15,11.56,0.66,33.77,18.83,8.43,0.92,10.5,0.08 +2019-06-17 05:00:00,35.74,88.84,23.21,27.4,11.14,0.68,31.63,20.27,8.72,1.04,7.74,0.36 +2019-06-17 06:00:00,38.56,93.83,27.87,27.09,13.3,0.73,27.31,25.49,11.32,1.4,7.41,0.25 +2019-06-17 07:00:00,44.13,108.43,29.39,27.7,15.09,0.8,27.84,28.53,14.21,1.62,6.94,0.14 +2019-06-17 08:00:00,48.36,126.1,26.74,28.4,15.06,0.86,32.8,26.43,13.22,1.61,9.36,0.23 +2019-06-17 09:00:00,53.34,153.32,24.03,26.95,12.56,0.87,36.18,24.66,12.79,1.56,9.58,0.02 +2019-06-17 10:00:00,51.32,181.06,22.74,25.91,10.79,0.88,35.94,24.11,12.86,1.36,7.95,0.17 +2019-06-17 11:00:00,50.31,200.94,20.24,25.13,9.63,0.8,43.73,21.35,10.94,1.24,9.34,0.25 +2019-06-17 12:00:00,44.89,165.8,22.86,26.15,9.17,0.8,49.25,26.06,16.34,1.5,12.44,0.0 +2019-06-17 13:00:00,36.68,132.51,22.21,28.08,8.95,0.82,53.4,23.59,14.18,2.28,17.03,0.08 +2019-06-17 14:00:00,32.97,152.31,21.78,25.96,8.87,0.88,55.93,21.61,13.51,1.53,16.43,1.8 +2019-06-17 15:00:00,26.63,107.11,26.15,26.81,9.32,1.01,58.78,27.4,15.2,2.7,25.65,2.23 +2019-06-17 16:00:00,26.33,104.1,27.55,26.33,10.32,1.04,53.41,27.21,13.47,1.52,16.47,0.08 +2019-06-17 17:00:00,28.29,121.28,24.84,26.02,10.68,0.99,48.07,25.73,14.93,1.45,20.16,0.35 +2019-06-17 18:00:00,30.21,128.06,28.79,26.48,10.12,0.9,50.47,29.37,18.56,1.38,15.06,0.02 +2019-06-17 19:00:00,29.33,116.45,32.97,24.93,9.99,0.91,49.53,35.12,18.01,1.66,19.8,2.03 +2019-06-17 20:00:00,33.51,138.34,43.69,23.97,10.93,1.07,35.6,40.74,18.49,2.12,19.92,4.2 +2019-06-17 21:00:00,40.5,152.77,61.41,23.3,12.19,1.41,17.62,55.02,23.19,3.67,39.35,5.34 +2019-06-17 22:00:00,52.96,200.21,40.93,23.76,13.65,1.14,37.27,37.31,15.38,4.15,40.73,4.35 +2019-06-17 23:00:00,52.54,229.35,24.48,23.43,12.34,0.88,71.9,21.12,7.63,2.41,19.65,3.62 +2019-06-18 00:00:00,44.6,164.22,20.87,23.57,9.4,0.85,68.02,17.87,6.84,1.52,11.71,1.43 +2019-06-18 01:00:00,37.08,89.89,21.29,23.4,8.15,0.82,57.03,18.5,7.69,1.15,10.22,0.69 +2019-06-18 02:00:00,32.28,73.22,19.28,24.37,7.2,0.81,53.1,16.8,7.31,1.01,9.18,0.41 +2019-06-18 03:00:00,27.74,52.83,17.61,24.5,6.94,0.79,46.84,16.17,7.6,0.86,11.11,0.88 +2019-06-18 04:00:00,29.54,58.78,15.26,22.87,6.73,0.81,48.0,15.01,7.62,0.63,7.56,1.02 +2019-06-18 05:00:00,23.22,32.69,21.51,22.46,6.52,0.79,46.55,18.84,8.53,0.64,7.07,0.0 +2019-06-18 06:00:00,22.29,33.41,28.25,22.97,6.37,0.83,37.27,25.13,12.2,0.87,9.45,0.0 +2019-06-18 07:00:00,21.71,39.71,26.53,22.94,6.52,0.77,37.2,26.09,13.48,0.99,8.98,0.0 +2019-06-18 08:00:00,21.61,45.07,27.8,24.49,6.83,0.79,37.8,31.39,18.6,0.95,8.54,0.0 +2019-06-18 09:00:00,24.33,58.25,27.04,23.73,6.89,0.76,45.41,32.06,18.29,0.99,8.75,0.0 +2019-06-18 10:00:00,21.78,58.74,21.04,24.25,7.04,0.75,51.78,22.83,13.85,0.98,7.44,0.0 +2019-06-18 11:00:00,23.35,66.01,20.81,23.7,7.52,0.91,56.38,21.55,10.97,1.25,21.27,0.18 +2019-06-18 12:00:00,20.52,65.98,28.6,24.23,7.56,1.05,59.17,29.31,14.79,1.46,28.16,0.5 +2019-06-18 13:00:00,24.17,74.12,26.47,26.64,8.37,0.91,63.74,25.49,11.8,1.61,25.27,0.45 +2019-06-18 14:00:00,30.77,78.17,23.19,27.44,8.58,0.8,65.5,22.07,10.89,1.83,29.64,0.36 +2019-06-18 15:00:00,26.62,69.38,22.09,25.55,8.12,0.77,72.62,21.45,10.39,1.16,16.3,0.2 +2019-06-18 16:00:00,23.26,66.82,24.57,26.16,7.94,0.87,71.69,23.48,11.06,1.43,18.14,1.3 +2019-06-18 17:00:00,23.27,75.35,29.41,27.41,8.45,0.99,68.07,26.98,12.36,1.63,22.79,0.09 +2019-06-18 18:00:00,25.92,84.88,40.69,28.0,8.92,1.01,55.35,34.57,15.01,2.06,27.25,0.02 +2019-06-18 19:00:00,33.18,100.74,46.79,28.29,8.61,1.15,48.27,38.05,13.17,3.11,38.03,0.96 +2019-06-18 20:00:00,34.07,117.46,58.09,27.8,8.45,1.39,33.1,47.04,16.01,3.76,40.94,0.22 +2019-06-18 21:00:00,44.63,141.65,68.82,27.64,9.43,1.79,18.84,68.14,34.01,4.4,53.95,0.37 +2019-06-18 22:00:00,54.29,179.84,69.73,28.99,10.13,2.1,17.0,78.88,45.94,5.92,56.18,0.7 +2019-06-18 23:00:00,59.18,201.43,70.05,32.9,11.25,2.12,17.11,85.29,54.9,5.8,57.65,0.79 +2019-06-19 00:00:00,70.43,216.58,64.04,34.19,11.74,1.87,17.2,74.53,45.84,5.23,51.41,0.96 +2019-06-19 01:00:00,83.37,214.88,53.61,35.72,13.37,1.49,19.94,56.98,31.44,4.84,47.1,1.18 +2019-06-19 02:00:00,97.24,214.99,49.69,37.61,13.09,1.37,29.74,50.77,25.49,4.66,44.8,0.68 +2019-06-19 03:00:00,105.5,213.25,41.88,40.08,13.05,1.27,22.01,41.79,20.41,4.45,39.94,0.58 +2019-06-19 04:00:00,109.14,203.37,38.77,38.16,12.06,1.19,21.58,40.46,20.53,4.17,31.77,0.67 +2019-06-19 05:00:00,106.56,198.41,36.11,37.84,11.39,1.13,19.92,40.44,22.15,3.76,27.76,0.66 +2019-06-19 06:00:00,105.59,197.46,36.65,38.67,11.42,1.19,19.42,47.53,30.23,3.69,27.55,0.63 +2019-06-19 07:00:00,108.08,208.21,39.41,39.13,12.17,1.29,20.77,53.64,35.66,3.99,25.85,0.69 +2019-06-19 08:00:00,105.86,220.35,43.99,39.7,13.84,1.27,24.4,46.14,24.38,3.61,23.18,0.47 +2019-06-19 09:00:00,88.51,229.02,43.06,40.55,15.46,1.14,38.84,42.37,20.05,3.34,19.99,0.49 +2019-06-19 10:00:00,80.52,248.5,32.67,39.72,14.92,1.05,57.18,30.6,12.98,2.59,16.72,2.2 +2019-06-19 11:00:00,73.81,256.76,32.92,38.93,14.63,1.02,79.97,28.58,11.44,2.73,15.48,0.28 +2019-06-19 12:00:00,77.57,279.37,28.86,37.01,14.48,0.88,100.0,23.79,9.04,2.46,17.9,0.53 +2019-06-19 13:00:00,81.33,285.77,31.3,37.57,14.15,0.98,116.3,27.65,11.28,2.49,19.25,0.03 +2019-06-19 14:00:00,80.49,289.22,32.54,36.61,14.18,0.95,129.65,26.26,7.86,2.32,16.53,0.6 +2019-06-19 15:00:00,80.58,288.5,30.65,34.73,13.47,0.95,129.77,27.07,9.58,2.14,14.19,1.1 +2019-06-19 16:00:00,80.92,279.67,30.17,34.25,13.31,0.96,138.41,25.81,9.2,2.41,14.59,0.0 +2019-06-19 17:00:00,77.87,272.09,31.71,32.55,13.27,0.89,132.56,25.81,8.66,2.07,15.09,0.0 +2019-06-19 18:00:00,77.13,271.55,32.39,31.25,13.48,0.91,122.96,26.54,9.5,1.92,16.35,0.45 +2019-06-19 19:00:00,69.44,233.85,33.39,30.68,11.54,0.95,79.8,27.16,7.59,1.74,29.25,0.07 +2019-06-19 20:00:00,55.56,173.71,34.14,30.74,10.56,1.02,50.37,28.97,9.94,1.92,21.31,0.05 +2019-06-19 21:00:00,40.92,137.06,33.33,28.95,10.08,1.09,35.3,28.26,10.0,1.9,23.48,0.02 +2019-06-19 22:00:00,32.04,118.43,31.42,28.53,9.53,1.08,30.44,28.63,11.87,1.66,12.33,0.16 +2019-06-19 23:00:00,30.61,102.92,28.74,29.67,9.29,0.98,28.0,26.48,11.79,1.5,9.9,0.73 +2019-06-20 00:00:00,24.6,80.87,28.61,30.43,9.3,0.84,25.87,27.16,12.56,1.17,8.72,2.07 +2019-06-20 01:00:00,21.88,65.41,27.69,29.56,8.49,0.8,23.56,25.43,11.31,1.14,7.78,1.1 +2019-06-20 02:00:00,21.97,61.2,25.6,31.51,8.52,0.86,22.49,23.94,10.91,1.09,7.36,0.6 +2019-06-20 03:00:00,21.0,54.35,25.93,31.39,8.59,0.79,19.45,22.89,8.68,1.2,6.52,0.35 +2019-06-20 04:00:00,23.68,53.83,27.23,28.87,7.66,0.78,16.91,25.18,10.88,1.18,6.56,1.14 +2019-06-20 05:00:00,23.66,58.36,28.75,27.86,7.29,0.82,14.03,26.98,12.43,1.25,6.86,1.05 +2019-06-20 06:00:00,23.21,67.48,31.36,27.07,7.52,0.83,11.47,32.97,17.45,1.38,7.19,0.47 +2019-06-20 07:00:00,25.69,78.14,33.95,27.98,8.44,0.86,12.46,39.23,23.55,1.53,10.72,0.51 +2019-06-20 08:00:00,33.02,101.4,36.02,30.63,9.61,0.96,17.84,41.02,23.88,1.62,11.11,0.25 +2019-06-20 09:00:00,37.32,113.32,31.24,30.63,10.31,0.94,32.76,31.55,15.98,1.54,8.74,0.0 +2019-06-20 10:00:00,37.84,121.34,28.2,31.99,10.99,0.94,54.11,26.84,12.88,1.52,7.67,0.0 +2019-06-20 11:00:00,41.52,132.3,26.17,32.25,11.03,0.93,74.94,23.15,9.74,1.43,7.64,0.77 +2019-06-20 12:00:00,47.54,132.31,26.03,30.99,11.06,0.93,96.63,22.4,9.01,1.44,7.53,0.01 +2019-06-20 13:00:00,56.1,141.02,25.12,30.0,10.56,0.89,117.7,20.03,6.71,1.6,8.65,0.01 +2019-06-20 14:00:00,65.95,139.44,25.21,29.09,10.72,0.84,124.54,19.72,6.36,1.79,8.6,0.03 +2019-06-20 15:00:00,46.44,132.84,26.38,29.48,10.19,0.84,134.29,19.76,5.94,1.87,8.72,0.96 +2019-06-20 16:00:00,49.71,137.49,26.15,28.59,9.88,0.78,130.59,19.98,7.13,1.89,11.29,1.16 +2019-06-20 17:00:00,47.84,141.49,27.8,29.01,9.41,0.84,128.11,22.63,7.33,1.78,12.22,2.21 +2019-06-20 18:00:00,48.68,139.45,31.68,29.7,9.92,0.97,132.51,24.69,6.99,2.04,17.54,0.04 +2019-06-20 19:00:00,50.76,163.08,43.42,29.42,10.67,1.14,126.33,32.42,7.36,2.38,27.11,0.08 +2019-06-20 20:00:00,59.77,209.29,50.86,28.76,11.52,1.25,97.84,34.86,6.27,3.61,31.78,0.04 +2019-06-20 21:00:00,74.78,307.59,38.9,28.74,10.5,1.13,82.55,28.97,7.46,3.02,38.86,1.21 +2019-06-20 22:00:00,76.08,305.05,33.43,26.68,9.74,1.08,83.11,24.48,6.03,2.26,20.24,0.0 +2019-06-20 23:00:00,67.15,204.14,42.85,27.45,10.93,1.12,65.55,30.45,6.95,2.53,14.87,0.02 +2019-06-21 00:00:00,74.33,212.84,51.41,28.58,11.32,1.13,48.29,37.72,9.22,3.17,19.25,0.2 +2019-06-21 01:00:00,79.96,225.31,56.48,28.93,13.19,1.08,40.26,42.07,10.77,3.62,21.62,0.04 +2019-06-21 02:00:00,80.89,222.28,55.89,31.17,11.84,1.13,43.36,43.12,12.15,3.01,21.69,0.0 +2019-06-21 03:00:00,81.21,208.88,50.51,31.66,11.63,1.07,34.08,42.9,16.57,2.6,24.33,0.02 +2019-06-21 04:00:00,76.28,189.31,45.12,28.87,10.67,1.06,28.2,36.26,12.15,2.88,19.42,0.0 +2019-06-21 05:00:00,75.93,175.38,47.64,28.6,10.55,1.09,25.48,37.97,12.47,2.92,17.76,0.0 +2019-06-21 06:00:00,76.54,181.15,48.55,28.79,10.51,1.2,21.43,43.43,18.39,2.98,20.09,0.38 +2019-06-21 07:00:00,83.01,196.04,49.1,30.21,12.48,1.28,22.7,48.9,24.14,3.07,21.72,0.0 +2019-06-21 08:00:00,89.23,215.26,44.05,32.77,14.79,1.17,28.19,41.51,18.81,3.19,18.39,0.03 +2019-06-21 09:00:00,81.35,201.68,40.9,32.26,14.64,1.17,40.62,37.16,15.58,2.85,15.53,0.1 +2019-06-21 10:00:00,69.24,195.92,34.14,32.28,14.14,1.12,56.69,30.98,12.55,2.39,12.78,0.52 +2019-06-21 11:00:00,66.5,177.83,29.32,33.13,13.47,1.03,76.76,26.18,10.16,2.27,11.81,0.81 +2019-06-21 12:00:00,57.96,180.18,27.59,34.27,12.1,1.0,103.12,23.2,8.0,2.51,18.38,0.68 +2019-06-21 13:00:00,57.34,176.84,26.61,33.3,11.41,0.99,114.93,21.7,7.13,2.21,19.97,1.31 +2019-06-21 14:00:00,55.17,165.22,25.01,33.09,12.04,0.95,123.27,20.77,6.21,2.5,15.58,0.47 +2019-06-21 15:00:00,56.96,163.31,26.81,32.59,12.51,0.98,119.45,21.19,6.11,2.14,25.92,0.03 +2019-06-21 16:00:00,67.22,184.95,37.81,32.97,11.84,1.08,94.66,31.65,13.37,2.62,41.03,0.15 +2019-06-21 17:00:00,68.67,159.81,34.3,33.17,11.19,1.07,90.11,28.51,8.62,2.87,30.25,0.3 +2019-06-21 18:00:00,62.87,140.79,31.24,36.18,12.48,1.05,95.15,24.17,6.51,2.93,21.05,0.18 +2019-06-21 19:00:00,58.52,146.22,40.05,35.39,11.65,1.29,77.05,31.19,8.96,3.1,26.06,0.03 +2019-06-21 20:00:00,62.4,168.96,61.58,34.41,10.82,1.8,46.31,49.91,16.13,4.04,39.64,0.03 +2019-06-21 21:00:00,73.06,208.0,72.39,32.32,11.98,1.96,36.31,64.4,26.39,4.65,42.63,2.24 +2019-06-21 22:00:00,78.66,213.24,71.29,33.09,13.15,1.93,34.34,65.35,27.88,4.65,42.04,4.2 +2019-06-21 23:00:00,74.22,206.46,66.9,33.41,13.15,1.59,31.5,53.77,17.17,4.41,30.84,3.7 +2019-06-22 00:00:00,67.93,183.52,62.13,32.71,12.31,1.4,28.94,50.43,15.92,3.98,25.56,3.02 +2019-06-22 01:00:00,62.8,177.01,62.18,31.98,12.03,1.3,26.7,53.89,19.66,3.18,25.37,1.2 +2019-06-22 02:00:00,61.71,175.08,59.59,34.15,12.6,1.23,23.33,52.36,19.07,3.14,25.2,2.17 +2019-06-22 03:00:00,68.65,174.63,53.94,35.33,11.86,1.15,24.24,48.97,18.49,3.41,26.08,1.27 +2019-06-22 04:00:00,74.17,169.27,51.79,32.14,11.86,1.14,24.74,45.84,17.39,3.91,28.76,0.53 +2019-06-22 05:00:00,82.92,173.13,53.36,32.52,12.09,1.11,20.92,49.56,22.54,3.86,29.32,1.47 +2019-06-22 06:00:00,84.94,187.14,56.28,34.45,13.5,1.14,19.23,56.87,27.59,3.58,29.12,1.61 +2019-06-22 07:00:00,94.75,218.53,55.71,35.54,16.66,1.25,24.42,54.29,24.77,3.23,30.0,1.54 +2019-06-22 08:00:00,108.25,237.37,49.5,36.65,21.12,1.16,43.69,44.86,19.07,3.18,22.4,0.67 +2019-06-22 09:00:00,101.22,224.69,41.17,36.2,20.4,1.08,68.01,36.86,14.77,2.71,15.68,0.4 +2019-06-22 10:00:00,80.47,189.02,36.06,35.12,19.16,1.03,89.57,33.22,13.67,2.58,20.69,1.09 +2019-06-22 11:00:00,67.86,165.55,30.7,33.69,19.77,0.95,105.8,24.93,8.06,2.01,18.51,0.61 +2019-06-22 12:00:00,57.23,147.94,26.63,32.86,19.29,0.93,116.65,21.6,7.19,2.14,16.02,0.42 +2019-06-22 13:00:00,65.98,146.44,24.97,31.75,17.87,0.92,116.78,20.17,6.39,2.15,15.41,1.64 +2019-06-22 14:00:00,50.33,145.35,23.5,31.27,14.94,0.88,114.78,20.04,6.8,2.14,20.71,3.8 +2019-06-22 15:00:00,48.06,137.63,24.4,30.54,13.02,0.84,114.03,21.59,7.72,1.72,23.14,0.32 +2019-06-22 16:00:00,46.3,130.72,23.75,30.04,12.32,0.83,125.61,20.99,7.59,1.95,20.77,0.38 +2019-06-22 17:00:00,44.82,129.02,26.39,29.14,13.14,0.84,126.97,22.6,8.03,1.86,18.91,7.78 +2019-06-22 18:00:00,44.94,138.43,28.06,30.3,13.91,0.84,122.82,21.69,5.51,1.81,20.75,0.69 +2019-06-22 19:00:00,51.87,154.32,38.23,29.02,13.8,1.07,108.59,27.14,5.35,2.2,23.59,0.11 +2019-06-22 20:00:00,54.12,175.37,56.09,28.46,14.69,1.3,72.67,38.29,6.48,3.35,24.36,0.68 +2019-06-22 21:00:00,64.38,205.19,69.45,29.06,15.47,1.57,47.44,48.68,9.06,4.57,30.74,1.55 +2019-06-22 22:00:00,75.13,234.61,64.63,29.1,15.41,1.55,45.44,46.13,8.89,5.23,32.36,0.55 +2019-06-22 23:00:00,79.61,232.0,40.38,28.5,12.09,1.18,48.93,29.31,6.38,4.01,22.66,0.54 +2019-06-23 00:00:00,67.86,205.77,32.01,27.74,10.66,1.02,46.16,24.98,6.77,2.39,12.28,0.07 +2019-06-23 01:00:00,51.75,155.87,26.5,27.79,9.97,0.89,46.67,21.78,6.57,1.75,8.87,0.0 +2019-06-23 02:00:00,39.53,120.31,23.33,29.79,10.04,0.86,44.42,19.78,6.5,1.55,7.45,0.0 +2019-06-23 03:00:00,43.08,104.76,21.99,30.94,10.12,0.82,39.56,19.42,6.68,1.71,6.85,0.13 +2019-06-23 04:00:00,50.28,113.98,21.06,28.21,9.16,0.87,32.73,19.06,6.74,1.96,7.0,0.28 +2019-06-23 05:00:00,54.24,116.53,20.32,27.3,8.38,0.87,27.92,18.59,6.77,1.89,6.58,0.82 +2019-06-23 06:00:00,44.14,105.96,21.65,27.32,8.07,0.97,24.03,19.24,7.06,1.74,6.59,0.16 +2019-06-23 07:00:00,39.89,96.49,23.4,28.74,8.63,1.08,23.17,20.13,7.56,1.6,8.85,0.21 +2019-06-23 08:00:00,36.4,94.29,23.48,29.05,9.85,1.1,27.49,20.87,8.36,1.6,8.02,0.37 +2019-06-23 09:00:00,40.28,103.18,23.31,31.49,11.01,1.13,38.09,20.47,8.18,1.78,9.42,0.42 +2019-06-23 10:00:00,44.23,113.67,24.26,31.48,11.33,1.07,48.89,21.61,8.44,1.67,8.49,0.94 +2019-06-23 11:00:00,42.42,113.1,22.99,33.44,10.45,1.08,62.54,20.76,7.43,1.59,9.32,0.48 +2019-06-23 12:00:00,38.43,109.28,21.65,36.25,10.27,1.01,74.45,19.14,6.41,1.65,9.17,0.82 +2019-06-23 13:00:00,35.14,110.27,20.38,33.8,10.02,0.94,80.78,17.95,5.98,1.47,6.86,1.47 +2019-06-23 14:00:00,35.49,108.99,19.01,34.84,9.88,0.86,85.95,16.93,5.79,1.32,5.68,1.64 +2019-06-23 15:00:00,36.3,102.95,18.18,35.19,9.44,0.82,94.7,15.99,5.49,1.16,5.37,1.74 +2019-06-23 16:00:00,36.89,99.49,17.12,36.71,9.95,0.83,104.05,15.25,5.23,1.1,6.68,0.85 +2019-06-23 17:00:00,34.84,97.66,19.13,34.71,10.28,0.84,106.17,16.86,5.48,1.15,13.67,1.8 +2019-06-23 18:00:00,37.97,105.66,22.82,34.24,10.71,0.92,95.93,18.79,5.33,1.28,17.66,1.06 +2019-06-23 19:00:00,41.61,122.84,28.39,33.08,12.3,1.0,76.59,22.4,5.88,1.36,17.44,0.78 +2019-06-23 20:00:00,40.85,135.15,27.53,32.22,10.59,0.99,59.37,22.57,6.33,1.59,21.55,0.98 +2019-06-23 21:00:00,37.96,144.71,26.93,30.28,9.56,0.98,52.72,22.33,6.55,1.54,12.07,0.93 +2019-06-23 22:00:00,41.78,182.55,24.26,29.2,10.99,0.92,47.17,21.22,6.93,1.34,8.36,0.59 +2019-06-23 23:00:00,38.03,263.48,22.68,28.74,10.97,0.82,36.4,19.93,6.95,1.04,5.48,0.01 +2019-06-24 00:00:00,22.11,145.32,21.95,27.58,13.44,0.83,33.39,19.92,7.65,0.94,5.06,0.0 +2019-06-24 01:00:00,17.39,78.4,20.29,27.35,12.58,0.77,29.58,18.93,7.87,1.0,6.1,0.0 +2019-06-24 02:00:00,16.63,46.65,18.63,29.28,9.73,0.79,32.63,17.55,6.95,0.91,6.33,0.19 +2019-06-24 03:00:00,14.66,32.43,19.17,29.87,10.06,0.8,32.15,17.54,6.59,0.78,6.31,0.17 +2019-06-24 04:00:00,13.2,31.97,19.91,26.4,10.15,0.83,25.87,17.65,6.99,0.88,7.25,0.17 +2019-06-24 05:00:00,17.26,34.08,19.82,25.82,10.15,0.84,24.29,17.87,7.47,0.99,6.78,0.25 +2019-06-24 06:00:00,19.31,36.84,22.11,25.8,10.68,0.85,23.29,21.36,8.99,1.08,7.54,0.25 +2019-06-24 07:00:00,25.8,47.61,22.34,25.25,10.24,0.93,23.65,21.65,9.28,1.16,6.45,0.23 +2019-06-24 08:00:00,23.67,54.04,21.15,28.1,10.26,0.94,25.53,20.87,9.4,1.14,5.4,0.33 +2019-06-24 09:00:00,25.0,60.71,21.15,29.38,9.96,0.98,28.33,20.95,9.66,1.22,5.28,0.28 +2019-06-24 10:00:00,30.21,75.2,24.38,27.86,10.07,1.02,35.78,22.8,9.57,1.21,5.48,0.31 +2019-06-24 11:00:00,35.27,92.26,25.82,30.18,10.06,1.07,45.72,21.74,7.34,1.49,7.67,0.51 +2019-06-24 12:00:00,38.9,101.68,28.55,30.54,9.57,1.06,54.56,22.76,7.37,1.64,8.53,0.49 +2019-06-24 13:00:00,41.56,113.47,35.13,29.86,9.42,1.07,62.46,24.9,15.27,1.91,17.17,0.24 +2019-06-24 14:00:00,44.61,134.52,31.2,28.99,9.29,0.95,56.87,25.21,16.23,1.92,19.1,0.09 +2019-06-24 15:00:00,39.09,164.48,29.19,30.32,8.69,0.77,54.0,20.28,18.39,1.62,14.67,0.25 +2019-06-24 16:00:00,31.79,126.94,26.61,29.49,9.7,0.81,57.34,31.57,15.14,1.49,14.37,0.02 +2019-06-24 17:00:00,25.94,113.07,24.96,30.8,10.55,0.87,57.1,24.04,9.79,1.52,12.9,0.03 +2019-06-24 18:00:00,19.86,93.78,27.9,29.02,11.01,0.84,45.79,24.33,7.82,1.79,16.15,0.32 +2019-06-24 19:00:00,20.76,91.19,29.77,30.26,12.8,0.91,41.79,23.19,6.94,1.57,14.85,0.38 +2019-06-24 20:00:00,21.24,90.25,30.08,31.82,11.98,0.97,36.92,24.42,7.43,1.8,20.54,0.25 +2019-06-24 21:00:00,24.45,94.33,35.79,30.57,12.19,1.07,27.31,28.43,8.32,2.37,19.1,0.27 +2019-06-24 22:00:00,28.84,98.98,35.01,29.33,13.23,1.03,26.19,27.89,9.21,2.75,18.99,0.35 +2019-06-24 23:00:00,33.34,98.08,31.3,28.28,12.03,1.03,26.16,25.8,8.55,2.43,18.61,0.93 +2019-06-25 00:00:00,35.8,94.21,29.43,28.88,11.86,1.11,26.25,25.2,8.58,2.24,14.38,0.83 +2019-06-25 01:00:00,34.57,85.05,26.33,27.61,11.06,0.85,26.02,23.26,8.54,1.76,13.8,1.01 +2019-06-25 02:00:00,31.32,74.84,22.7,29.63,10.15,0.89,24.93,20.23,7.55,1.6,11.43,0.71 +2019-06-25 03:00:00,31.23,63.79,22.38,30.82,10.63,0.88,23.84,19.48,6.87,1.59,13.18,0.37 +2019-06-25 04:00:00,33.53,61.63,22.09,26.45,9.65,0.81,20.79,19.09,7.23,1.64,10.73,0.32 +2019-06-25 05:00:00,33.93,61.17,25.03,25.59,9.99,0.82,18.02,22.11,8.62,1.59,11.42,0.33 +2019-06-25 06:00:00,39.05,74.51,28.38,27.48,11.65,0.89,15.63,27.14,11.63,2.07,13.81,0.0 +2019-06-25 07:00:00,47.73,97.94,29.68,27.99,12.9,1.0,17.94,29.45,13.57,2.39,16.1,0.18 +2019-06-25 08:00:00,50.67,108.08,30.26,28.53,13.96,1.04,27.12,30.67,13.99,2.49,14.82,0.21 +2019-06-25 09:00:00,52.06,115.09,31.79,28.62,13.63,1.02,28.71,32.97,14.71,2.37,14.88,0.27 +2019-06-25 10:00:00,52.14,124.34,35.14,27.76,12.98,1.11,36.0,35.06,15.16,2.3,14.09,0.43 +2019-06-25 11:00:00,56.47,128.35,33.22,28.14,12.43,1.06,52.52,34.39,15.21,2.47,19.34,0.56 +2019-06-25 12:00:00,57.02,131.31,26.87,29.75,12.89,1.03,75.19,21.98,7.4,2.51,17.74,0.88 +2019-06-25 13:00:00,56.97,134.16,29.24,30.73,12.35,1.07,86.3,27.47,16.11,2.5,19.11,0.59 +2019-06-25 14:00:00,57.35,135.32,25.86,30.39,12.15,1.0,99.53,28.6,12.92,2.49,16.13,0.62 +2019-06-25 15:00:00,56.2,131.06,27.03,30.32,12.01,0.98,107.51,29.89,12.91,2.57,15.46,0.39 +2019-06-25 16:00:00,65.68,125.39,28.59,29.39,12.47,0.96,114.18,33.95,15.83,2.73,20.11,0.44 +2019-06-25 17:00:00,66.53,128.7,30.02,29.69,11.75,0.96,118.94,29.74,11.63,2.56,23.57,1.12 +2019-06-25 18:00:00,69.36,140.6,34.9,30.28,11.8,1.04,112.04,31.59,11.47,2.91,25.97,0.11 +2019-06-25 19:00:00,68.03,147.8,34.62,30.51,11.16,1.08,98.19,28.4,8.16,3.33,31.81,0.17 +2019-06-25 20:00:00,71.52,163.15,44.75,29.65,11.23,1.28,66.31,32.94,7.42,3.92,39.26,0.28 +2019-06-25 21:00:00,73.9,185.0,51.87,28.27,11.54,1.69,40.33,38.01,9.01,4.86,39.95,0.62 +2019-06-25 22:00:00,74.9,188.46,52.12,28.0,12.71,1.64,31.68,39.22,10.35,4.67,36.87,0.77 +2019-06-25 23:00:00,71.52,179.58,51.48,28.5,12.9,1.48,28.45,41.57,13.34,4.5,30.97,0.92 +2019-06-26 00:00:00,70.69,170.49,48.99,28.3,12.75,1.33,25.55,41.46,14.92,3.45,24.76,0.78 +2019-06-26 01:00:00,70.71,158.48,48.6,27.6,11.83,1.25,22.43,40.14,13.04,2.83,20.54,0.85 +2019-06-26 02:00:00,74.25,149.39,46.9,29.99,12.04,1.23,23.37,41.66,16.34,2.91,17.42,0.51 +2019-06-26 03:00:00,75.64,153.06,42.75,31.65,13.21,1.41,20.46,37.04,13.79,3.13,19.66,0.62 +2019-06-26 04:00:00,73.07,150.37,39.31,27.27,12.82,1.24,21.66,34.29,12.93,2.99,16.23,0.58 +2019-06-26 05:00:00,65.79,125.39,35.99,27.1,11.73,1.12,17.6,30.64,12.16,2.59,18.36,0.64 +2019-06-26 06:00:00,62.7,129.24,37.05,27.1,10.78,1.16,15.3,35.5,17.54,3.0,14.13,1.11 +2019-06-26 07:00:00,68.49,147.66,38.15,28.2,11.33,1.15,16.22,41.95,25.12,2.89,16.38,0.63 +2019-06-26 08:00:00,76.17,176.48,38.48,32.31,13.75,1.29,21.61,44.2,26.4,2.72,16.62,0.51 +2019-06-26 09:00:00,94.27,202.6,41.68,32.71,15.76,1.36,29.56,47.87,25.85,3.14,17.7,0.35 +2019-06-26 10:00:00,101.05,212.81,41.34,31.42,18.57,1.42,52.11,32.24,25.09,3.48,18.25,0.52 +2019-06-26 11:00:00,89.08,192.94,35.52,31.31,14.75,1.13,71.14,26.76,21.71,3.22,17.01,0.31 +2019-06-26 12:00:00,69.44,165.21,27.69,34.16,13.84,0.95,78.14,31.62,18.5,2.61,19.98,0.16 +2019-06-26 13:00:00,62.6,150.39,23.97,34.47,13.09,0.87,75.15,28.54,15.7,2.35,19.83,0.03 +2019-06-26 14:00:00,63.33,138.34,21.97,34.67,13.08,0.86,80.7,26.82,15.13,1.98,16.06,0.14 +2019-06-26 15:00:00,64.89,137.22,22.75,33.91,12.57,0.82,82.9,30.19,16.83,1.8,14.12,0.08 +2019-06-26 16:00:00,60.83,134.83,23.34,34.11,12.47,0.86,81.38,23.54,10.8,1.66,16.85,0.02 +2019-06-26 17:00:00,53.3,131.4,23.24,31.88,11.92,0.88,78.2,20.68,7.97,1.59,20.54,0.0 +2019-06-26 18:00:00,49.34,122.29,28.31,33.0,11.61,0.86,78.34,25.82,10.24,1.64,14.03,0.05 +2019-06-26 19:00:00,50.2,129.99,33.08,30.91,11.44,0.96,70.24,28.34,9.81,1.92,33.33,0.09 +2019-06-26 20:00:00,52.0,145.61,43.93,30.1,11.95,1.23,50.53,33.27,8.75,2.62,29.23,0.19 +2019-06-26 21:00:00,54.21,167.59,50.8,28.98,12.56,1.45,35.71,39.36,10.6,3.55,50.39,0.47 +2019-06-26 22:00:00,57.86,174.47,53.54,27.42,12.49,1.54,30.26,44.42,14.79,4.08,35.38,0.77 +2019-06-26 23:00:00,56.85,175.46,49.96,26.7,12.54,1.41,31.62,40.17,12.01,3.78,26.09,0.48 +2019-06-27 00:00:00,54.71,154.33,47.93,27.02,12.0,1.35,28.0,38.95,11.91,3.4,22.7,0.0 +2019-06-27 01:00:00,55.58,142.63,46.87,26.48,11.4,1.19,27.17,37.31,10.5,3.25,21.99,0.16 +2019-06-27 02:00:00,57.6,134.07,45.57,28.82,11.44,1.22,22.56,37.0,11.36,2.86,21.1,0.08 +2019-06-27 03:00:00,57.41,134.09,44.98,30.95,12.4,1.28,18.56,41.79,16.92,2.89,20.14,0.15 +2019-06-27 04:00:00,62.08,139.23,46.26,28.06,11.94,1.34,16.03,47.12,22.75,3.58,21.6,0.08 +2019-06-27 05:00:00,65.31,150.52,49.94,27.66,12.17,1.4,15.46,53.28,30.05,3.55,25.45,0.2 +2019-06-27 06:00:00,74.65,175.22,46.53,29.87,13.46,1.3,17.87,52.15,31.05,3.53,30.58,0.15 +2019-06-27 07:00:00,104.77,222.06,38.94,33.41,16.76,1.18,25.01,39.16,20.32,3.44,22.68,0.16 +2019-06-27 08:00:00,117.81,252.27,41.0,31.96,17.15,1.23,30.21,44.46,27.69,3.36,17.96,0.08 +2019-06-27 09:00:00,100.97,287.93,42.41,30.81,17.99,1.19,43.62,43.65,24.3,3.02,15.17,0.26 +2019-06-27 10:00:00,87.24,339.64,39.12,30.71,19.78,1.04,64.81,28.66,10.89,2.85,14.08,0.51 +2019-06-27 11:00:00,75.61,347.86,30.13,32.14,17.28,0.95,75.55,26.3,10.95,2.26,15.52,0.42 +2019-06-27 12:00:00,72.64,377.2,26.26,32.34,14.58,0.87,75.57,28.1,15.47,2.17,17.22,0.44 +2019-06-27 13:00:00,75.51,473.56,28.98,30.3,12.4,0.89,78.9,26.54,8.53,2.03,33.24,0.0 +2019-06-27 14:00:00,54.46,272.88,28.42,28.72,11.66,0.9,78.48,26.01,8.35,1.88,26.6,0.06 +2019-06-27 15:00:00,47.66,170.43,22.89,27.34,11.44,0.87,84.55,27.17,15.06,1.65,17.68,0.12 +2019-06-27 16:00:00,45.75,189.08,22.35,26.63,11.35,0.91,86.03,22.26,10.14,1.56,14.6,0.02 +2019-06-27 17:00:00,48.56,219.83,22.14,28.27,11.32,0.82,84.39,25.86,12.42,1.55,17.5,0.06 +2019-06-27 18:00:00,52.11,226.9,26.5,30.76,11.19,0.83,77.12,24.45,11.0,1.72,17.42,0.05 +2019-06-27 19:00:00,48.35,223.88,32.88,30.96,10.92,0.9,64.46,31.1,12.98,1.94,19.69,0.0 +2019-06-27 20:00:00,46.83,209.8,44.89,29.4,11.19,1.11,45.74,37.28,13.61,2.9,22.3,0.6 +2019-06-27 21:00:00,48.94,220.08,58.91,28.02,11.83,1.41,25.4,52.31,23.08,3.3,32.23,1.22 +2019-06-27 22:00:00,53.5,235.21,63.12,26.77,14.01,1.78,19.87,62.24,32.93,4.58,37.15,1.64 +2019-06-27 23:00:00,59.11,244.93,61.62,27.04,17.3,1.77,18.79,64.71,36.61,4.05,37.57,1.73 +2019-06-28 00:00:00,66.91,251.78,59.61,25.87,18.79,1.6,18.36,65.29,37.72,4.49,31.92,1.79 +2019-06-28 01:00:00,75.07,258.26,56.88,26.56,18.98,1.42,17.59,59.76,33.06,4.24,31.7,0.9 +2019-06-28 02:00:00,79.13,244.46,53.53,30.63,19.02,1.35,18.68,57.74,33.02,3.53,28.49,1.17 +2019-06-28 03:00:00,80.89,235.88,47.29,33.0,17.19,1.3,18.53,46.44,23.67,4.61,26.38,0.95 +2019-06-28 04:00:00,89.36,235.01,47.43,30.26,17.34,1.22,17.82,45.69,21.8,3.85,23.61,1.03 +2019-06-28 05:00:00,94.73,238.5,47.88,30.3,18.99,1.27,19.34,52.92,31.27,4.09,20.27,0.54 +2019-06-28 06:00:00,101.67,259.43,46.74,31.0,23.18,1.25,21.55,50.49,28.32,4.13,23.88,0.13 +2019-06-28 07:00:00,104.74,290.88,50.87,30.67,24.3,1.26,20.89,59.25,36.52,4.49,18.86,0.2 +2019-06-28 08:00:00,93.12,300.18,46.08,30.07,21.03,1.07,30.15,39.69,21.93,3.97,16.3,0.23 +2019-06-28 09:00:00,68.71,275.44,34.53,27.29,15.55,0.86,40.12,27.24,15.24,2.7,11.56,0.18 +2019-06-28 10:00:00,45.98,271.7,35.57,28.42,12.4,0.75,48.44,26.68,14.52,1.82,8.81,0.56 +2019-06-28 11:00:00,38.08,218.35,32.58,27.44,11.29,0.74,52.49,27.3,25.99,2.05,12.89,0.22 +2019-06-28 12:00:00,35.76,176.72,26.02,25.17,10.63,0.74,55.66,24.62,11.19,2.74,15.22,0.13 +2019-06-28 13:00:00,33.26,156.25,26.13,26.03,10.4,0.73,67.78,23.64,9.92,2.61,20.82,0.03 +2019-06-28 14:00:00,29.43,128.46,30.07,27.54,9.59,0.71,76.57,28.66,10.85,2.05,14.87,0.09 +2019-06-28 15:00:00,31.98,128.63,23.29,25.83,9.29,0.7,64.81,25.64,11.44,1.52,19.39,0.09 +2019-06-28 16:00:00,39.29,187.35,20.16,25.4,8.81,0.76,53.44,22.11,10.29,1.71,14.43,0.07 +2019-06-28 17:00:00,47.67,264.0,21.21,23.95,9.08,0.69,53.72,23.24,10.55,1.72,13.93,0.14 +2019-06-28 18:00:00,47.09,254.71,23.32,26.84,10.4,0.67,55.68,25.46,11.62,1.74,14.2,0.15 +2019-06-28 19:00:00,45.51,243.86,27.92,26.89,9.69,0.77,49.17,27.52,12.04,1.54,15.89,0.16 +2019-06-28 20:00:00,50.17,247.75,38.58,26.88,11.63,0.99,37.24,34.2,13.63,2.39,22.75,0.3 +2019-06-28 21:00:00,56.75,279.71,48.29,25.99,13.42,1.4,24.3,45.82,20.5,3.17,28.53,0.49 +2019-06-28 22:00:00,58.68,294.88,42.94,24.97,12.69,1.2,26.91,39.46,17.15,4.04,32.7,0.54 +2019-06-28 23:00:00,55.02,297.35,33.99,23.82,12.52,0.95,32.2,29.35,10.88,2.46,22.31,0.42 +2019-06-29 00:00:00,50.57,269.55,31.08,22.7,12.78,0.83,34.4,27.0,10.28,1.94,18.15,0.3 +2019-06-29 01:00:00,52.07,270.15,33.78,23.36,12.33,0.77,30.08,28.51,10.74,2.21,22.77,0.17 +2019-06-29 02:00:00,65.93,323.4,35.75,25.07,12.86,0.79,28.15,29.37,10.07,2.04,22.59,0.16 +2019-06-29 03:00:00,73.59,365.34,33.57,25.79,13.74,0.76,28.92,27.89,9.88,2.13,17.9,0.17 +2019-06-29 04:00:00,75.76,391.44,42.5,23.23,13.32,0.79,26.82,34.7,11.94,2.09,14.41,0.14 +2019-06-29 05:00:00,70.61,367.57,41.43,23.66,14.32,0.86,25.36,34.13,12.24,2.12,18.21,0.08 +2019-06-29 06:00:00,68.5,319.9,37.5,23.36,15.77,0.91,22.96,36.17,17.24,2.4,17.35,0.05 +2019-06-29 07:00:00,61.22,263.09,37.0,22.5,15.38,0.94,20.72,40.66,21.56,2.35,13.09,0.08 +2019-06-29 08:00:00,55.18,224.85,31.91,22.99,13.81,0.92,27.68,38.69,22.76,2.22,12.24,0.18 +2019-06-29 09:00:00,51.5,201.78,29.18,22.31,13.54,0.86,36.83,35.6,19.27,2.04,11.39,0.16 +2019-06-29 10:00:00,51.54,204.58,24.23,23.74,12.12,0.82,43.55,26.96,13.92,1.8,10.62,0.17 +2019-06-29 11:00:00,47.91,213.78,21.61,23.83,11.09,0.8,49.23,23.54,11.65,1.9,11.44,0.1 +2019-06-29 12:00:00,48.13,225.3,21.34,24.2,10.83,0.84,58.31,22.49,10.42,2.03,14.79,0.2 +2019-06-29 13:00:00,53.88,239.09,21.46,25.37,10.53,0.79,64.42,20.97,8.41,1.86,17.35,0.42 +2019-06-29 14:00:00,55.16,248.22,20.41,24.5,10.09,0.75,61.18,20.97,8.96,1.53,12.08,0.0 +2019-06-29 15:00:00,54.18,248.8,26.0,23.84,9.88,0.67,57.74,25.2,10.38,1.46,15.62,0.04 +2019-06-29 16:00:00,55.36,260.63,26.85,22.19,9.54,0.67,57.19,26.62,10.71,1.3,17.41,0.09 +2019-06-29 17:00:00,50.73,256.14,22.05,23.41,8.98,0.65,54.91,22.82,10.51,1.62,18.99,0.02 +2019-06-29 18:00:00,48.08,243.22,25.2,24.64,8.84,0.71,50.18,26.33,12.58,1.74,15.39,0.06 +2019-06-29 19:00:00,46.66,232.19,34.19,24.82,9.37,0.82,45.13,33.91,14.68,2.33,25.36,0.0 +2019-06-29 20:00:00,53.33,270.59,49.51,22.98,10.72,1.12,30.93,46.49,19.67,3.12,38.37,0.09 +2019-06-29 21:00:00,61.9,274.7,61.55,24.48,11.54,1.59,20.52,66.71,35.82,4.68,35.19,0.5 +2019-06-29 22:00:00,68.7,291.66,62.11,23.08,12.66,1.82,18.16,76.61,47.08,5.49,44.75,0.56 +2019-06-29 23:00:00,73.47,304.55,59.23,23.31,13.69,1.84,18.37,72.16,43.36,5.99,40.52,1.44 +2019-06-30 00:00:00,74.73,304.08,56.8,24.59,14.41,1.73,21.84,79.16,53.61,6.18,46.36,2.78 +2019-06-30 01:00:00,81.44,319.02,53.34,24.27,15.75,1.62,24.33,77.37,53.75,5.08,42.83,0.72 +2019-06-30 02:00:00,83.17,308.7,48.25,26.79,18.94,1.63,28.13,75.18,53.92,5.16,40.45,1.14 +2019-06-30 03:00:00,84.8,291.3,47.47,29.64,18.85,1.47,29.61,77.0,55.64,5.15,38.35,0.98 +2019-06-30 04:00:00,86.22,282.98,47.38,27.46,16.19,1.37,25.65,71.99,50.03,4.94,35.95,1.89 +2019-06-30 05:00:00,89.39,282.63,42.8,27.39,17.68,1.24,27.02,67.19,49.65,4.61,32.08,1.0 +2019-06-30 06:00:00,92.15,289.13,38.92,27.41,18.78,1.23,27.42,63.62,46.86,4.34,31.68,0.44 +2019-06-30 07:00:00,90.06,357.66,25.53,25.51,13.68,0.86,40.06,31.24,17.82,3.24,18.34,0.54 +2019-06-30 08:00:00,61.31,391.59,32.49,23.59,11.4,0.82,46.44,37.22,19.78,1.51,12.45,1.27 +2019-06-30 09:00:00,40.25,173.15,35.36,23.58,10.97,0.9,34.25,38.03,19.89,2.21,12.78,1.24 +2019-06-30 10:00:00,42.12,159.74,28.4,25.53,11.19,0.9,41.98,30.19,15.37,2.25,15.41,1.12 +2019-06-30 11:00:00,49.66,217.4,19.94,25.56,9.93,0.88,41.88,21.85,11.28,1.67,10.36,0.98 +2019-06-30 12:00:00,50.34,241.75,18.65,26.03,9.63,0.88,46.77,19.78,9.75,1.37,10.42,0.4 +2019-06-30 13:00:00,50.94,230.94,18.34,26.18,9.82,0.78,55.17,17.37,7.2,1.54,15.59,0.5 +2019-06-30 14:00:00,53.06,231.57,18.6,25.31,9.66,0.78,59.56,17.15,6.76,1.12,13.36,0.5 +2019-06-30 15:00:00,57.82,288.73,19.21,24.37,9.21,0.73,64.34,17.27,6.07,0.92,13.66,0.33 +2019-06-30 16:00:00,62.98,358.03,21.87,23.72,9.5,0.72,75.59,18.66,6.12,1.03,19.7,0.43 +2019-06-30 17:00:00,45.16,213.74,21.27,25.52,10.67,0.7,74.01,18.61,6.53,1.08,22.74,0.39 +2019-06-30 18:00:00,56.01,255.11,23.2,27.52,11.07,0.79,76.64,19.0,5.74,1.28,26.54,0.1 +2019-06-30 19:00:00,60.93,278.57,27.68,27.64,11.49,0.85,68.95,21.66,5.87,1.52,17.32,0.06 +2019-06-30 20:00:00,65.8,273.23,40.45,28.11,11.93,1.09,49.11,30.47,7.65,2.3,24.7,0.36 +2019-06-30 21:00:00,71.02,293.6,35.31,27.29,11.58,0.99,39.67,29.57,10.26,2.59,20.66,0.07 +2019-06-30 22:00:00,64.93,263.05,32.52,24.43,12.57,0.95,38.83,27.64,9.42,1.76,11.46,0.72 +2019-06-30 23:00:00,51.55,175.13,38.91,23.33,12.79,1.03,28.32,31.69,10.15,1.89,12.24,0.16 +2019-07-01 00:00:00,49.21,172.17,45.0,23.78,12.76,1.07,26.06,38.48,13.99,2.05,17.72,1.37 +2019-07-01 01:00:00,55.08,178.22,46.9,24.19,12.73,1.11,19.05,45.33,20.15,2.26,14.72,1.78 +2019-07-01 02:00:00,57.49,173.62,45.03,26.05,13.06,1.04,22.65,43.11,18.74,2.28,16.59,1.12 +2019-07-01 03:00:00,53.81,155.82,34.32,27.63,14.24,0.83,23.83,33.31,14.81,2.19,12.79,1.4 +2019-07-01 04:00:00,45.49,140.6,29.64,25.17,11.9,0.81,25.37,26.57,10.42,1.62,9.13,1.03 +2019-07-01 05:00:00,45.94,131.73,28.96,24.61,11.34,0.81,21.91,24.64,8.58,1.25,12.51,0.95 +2019-07-01 06:00:00,51.09,139.65,29.74,23.36,10.2,0.86,20.37,29.31,13.31,1.34,10.43,0.88 +2019-07-01 07:00:00,49.45,153.02,29.74,23.74,9.8,0.96,22.57,33.67,18.87,1.25,8.48,0.94 +2019-07-01 08:00:00,46.12,145.68,26.61,24.67,10.23,0.98,28.12,30.3,17.25,1.41,7.67,0.76 +2019-07-01 09:00:00,50.66,157.5,28.02,25.06,11.02,0.9,36.94,27.26,12.33,1.45,7.74,0.53 +2019-07-01 10:00:00,54.25,174.01,26.23,26.15,11.29,0.9,52.27,23.92,9.79,1.65,8.61,0.48 +2019-07-01 11:00:00,58.15,187.62,26.72,28.6,12.31,0.93,70.91,23.96,8.97,1.81,15.27,0.56 +2019-07-01 12:00:00,57.58,205.21,25.68,27.77,13.12,0.88,90.02,24.45,8.01,1.89,10.97,0.39 +2019-07-01 13:00:00,62.58,219.02,23.98,27.8,13.52,0.87,102.53,19.7,5.92,1.92,17.92,0.2 +2019-07-01 14:00:00,68.56,225.26,23.26,27.17,13.04,0.89,110.96,19.38,6.0,1.92,16.68,0.08 +2019-07-01 15:00:00,64.12,208.94,22.0,26.11,13.25,0.89,114.5,17.63,4.87,1.87,20.23,0.03 +2019-07-01 16:00:00,61.43,194.38,21.41,26.08,12.84,0.88,113.32,17.8,5.16,1.72,23.12,0.13 +2019-07-01 17:00:00,60.47,187.38,22.49,26.39,12.18,0.81,109.68,19.12,5.89,1.72,22.95,0.2 +2019-07-01 18:00:00,62.88,192.48,24.2,26.73,11.76,0.91,107.64,19.68,5.44,1.79,23.13,0.31 +2019-07-01 19:00:00,64.73,202.96,35.89,27.7,12.08,1.06,87.13,26.73,5.92,2.32,27.64,1.19 +2019-07-01 20:00:00,65.12,229.47,44.34,30.07,13.01,1.22,63.45,31.97,6.77,3.17,39.01,0.69 +2019-07-01 21:00:00,67.72,256.48,41.38,28.6,13.71,1.18,49.46,32.05,8.28,3.4,27.73,0.46 +2019-07-01 22:00:00,64.89,273.41,32.64,24.94,12.54,0.92,39.08,28.42,10.64,2.61,22.07,0.58 +2019-07-01 23:00:00,57.6,239.0,31.97,23.33,11.41,0.85,34.27,27.62,10.39,2.13,15.35,1.1 +2019-07-02 00:00:00,50.17,191.38,36.63,22.9,10.93,0.92,25.82,30.38,10.83,1.88,14.39,0.64 +2019-07-02 01:00:00,52.98,179.42,40.49,22.07,11.17,0.88,22.25,34.23,12.74,2.28,18.88,0.88 +2019-07-02 02:00:00,53.81,181.63,36.96,24.79,11.37,0.86,24.31,31.82,11.84,1.87,19.2,0.52 +2019-07-02 03:00:00,55.03,182.95,26.73,27.78,14.2,0.77,26.32,22.93,7.67,1.66,17.83,0.41 +2019-07-02 04:00:00,62.72,231.04,18.58,24.57,12.15,0.78,47.2,17.35,6.46,1.53,11.43,0.37 +2019-07-02 05:00:00,70.62,393.24,17.87,23.41,10.32,0.76,64.7,16.21,5.59,1.24,9.73,0.26 +2019-07-02 06:00:00,62.79,361.31,25.01,22.55,10.02,0.82,55.23,21.36,7.13,1.1,9.54,0.23 +2019-07-02 07:00:00,59.71,290.1,32.26,22.94,12.13,0.9,47.04,28.41,10.55,1.3,10.21,0.21 +2019-07-02 08:00:00,63.4,274.04,31.56,24.82,14.29,0.96,44.64,32.21,15.58,1.77,9.45,0.11 +2019-07-02 09:00:00,72.51,266.88,28.88,25.58,16.06,0.93,55.48,29.9,14.61,1.88,9.66,0.22 +2019-07-02 10:00:00,71.62,238.23,28.41,24.93,15.27,0.92,60.48,26.86,11.48,1.89,12.89,0.18 +2019-07-02 11:00:00,72.45,234.46,26.24,27.36,14.75,0.95,76.67,22.1,7.08,2.07,17.02,0.3 +2019-07-02 12:00:00,85.99,242.25,26.36,27.13,13.58,1.08,90.64,21.86,6.53,2.53,21.51,0.32 +2019-07-02 13:00:00,88.09,253.77,25.72,27.31,13.04,1.1,103.34,20.06,5.39,3.66,26.62,0.38 +2019-07-02 14:00:00,94.87,256.16,24.4,27.61,12.34,1.13,107.71,18.56,5.0,3.07,21.65,0.15 +2019-07-02 15:00:00,94.41,248.32,23.28,27.96,12.27,1.13,109.74,17.57,4.68,2.71,20.57,0.38 +2019-07-02 16:00:00,90.08,240.95,22.4,29.06,11.71,1.09,106.12,19.58,8.74,2.27,27.95,0.17 +2019-07-02 17:00:00,84.8,223.86,21.85,29.23,10.13,1.03,102.57,18.12,5.29,1.96,31.6,0.56 +2019-07-02 18:00:00,80.41,212.16,24.33,30.83,10.35,1.0,94.05,19.0,4.65,1.69,21.84,0.98 +2019-07-02 19:00:00,77.32,192.6,28.23,32.26,9.99,1.06,82.99,21.35,4.85,2.01,23.57,0.45 +2019-07-02 20:00:00,71.38,183.69,31.96,32.49,9.76,1.13,67.39,23.22,4.76,2.31,25.92,0.52 +2019-07-02 21:00:00,68.56,183.06,34.54,32.17,10.42,1.27,48.98,23.99,5.03,2.57,23.96,0.42 +2019-07-02 22:00:00,70.73,174.65,33.39,30.98,11.24,1.18,48.63,23.69,5.23,2.64,20.2,0.46 +2019-07-02 23:00:00,65.82,161.95,28.97,32.98,10.95,1.1,43.3,21.62,5.05,2.05,13.25,0.76 +2019-07-03 00:00:00,60.55,138.33,24.74,31.82,10.41,0.98,38.98,19.65,5.45,1.73,8.56,0.6 +2019-07-03 01:00:00,54.9,122.98,25.12,32.16,9.59,1.1,34.15,20.2,5.95,1.45,6.7,0.4 +2019-07-03 02:00:00,51.46,113.38,23.1,34.89,9.63,0.97,35.55,18.5,5.37,1.35,6.34,0.34 +2019-07-03 03:00:00,49.01,119.0,21.28,34.94,9.21,0.87,30.01,17.65,5.64,1.45,5.89,0.43 +2019-07-03 04:00:00,46.86,125.85,21.6,33.07,8.78,0.86,28.32,17.33,6.14,1.49,5.8,0.47 +2019-07-03 05:00:00,46.64,130.37,22.55,33.61,8.67,0.91,26.06,17.91,5.84,1.54,6.59,0.5 +2019-07-03 06:00:00,48.37,127.46,23.38,33.08,9.26,0.94,22.34,18.85,6.31,1.62,7.92,0.28 +2019-07-03 07:00:00,49.83,129.56,25.9,31.79,9.74,0.99,25.1,22.82,9.15,1.67,8.06,0.53 +2019-07-03 08:00:00,50.8,135.81,29.16,33.49,10.39,1.07,36.8,25.75,9.95,1.85,10.93,0.42 +2019-07-03 09:00:00,49.76,144.86,27.44,33.33,10.73,1.03,34.62,24.25,8.95,1.86,8.4,0.69 +2019-07-03 10:00:00,43.65,141.46,22.48,34.43,10.61,0.95,37.85,19.77,7.11,1.52,7.79,0.43 +2019-07-03 11:00:00,43.17,140.52,23.03,34.32,10.57,1.05,42.48,19.69,6.63,1.67,8.77,0.42 +2019-07-03 12:00:00,41.49,122.87,22.49,31.75,9.46,1.09,44.37,18.73,6.63,1.72,8.47,0.66 +2019-07-03 13:00:00,35.59,108.05,21.15,33.92,8.85,0.97,51.84,16.99,5.82,1.5,8.87,0.31 +2019-07-03 14:00:00,29.57,90.62,21.87,36.45,8.62,0.9,57.48,20.5,9.91,1.48,8.64,0.57 +2019-07-03 15:00:00,27.57,76.68,21.17,35.11,8.76,0.9,62.52,18.88,11.69,1.32,7.82,0.41 +2019-07-03 16:00:00,24.24,71.32,30.11,33.85,8.91,0.84,66.56,15.41,5.37,1.38,12.25,0.44 +2019-07-03 17:00:00,23.66,70.99,20.74,34.08,9.17,0.88,71.54,16.97,5.15,1.55,13.29,0.6 +2019-07-03 18:00:00,26.74,82.64,24.08,31.76,10.41,0.94,73.05,19.19,5.12,1.73,13.14,0.58 +2019-07-03 19:00:00,27.59,95.35,29.3,32.09,10.64,0.97,63.39,22.95,7.64,1.84,13.54,0.8 +2019-07-03 20:00:00,29.5,105.24,40.1,32.58,12.34,1.12,41.87,30.33,8.35,2.09,15.48,0.99 +2019-07-03 21:00:00,32.74,113.7,43.29,32.41,10.33,1.23,29.9,32.36,8.83,2.46,16.49,1.15 +2019-07-03 22:00:00,34.18,119.57,38.8,29.13,9.59,1.16,30.29,30.0,9.34,2.32,15.33,0.49 +2019-07-03 23:00:00,32.0,107.59,34.72,29.1,9.38,1.06,30.43,27.25,8.84,2.06,11.56,1.56 +2019-07-04 00:00:00,29.15,96.89,29.85,29.99,9.2,0.96,35.77,24.09,8.26,1.89,10.01,2.08 +2019-07-04 01:00:00,29.98,91.97,26.59,28.49,9.47,0.99,36.71,21.07,7.28,1.71,7.74,0.62 +2019-07-04 02:00:00,31.98,88.01,25.45,29.78,9.31,0.94,30.09,19.99,6.79,1.68,7.09,0.5 +2019-07-04 03:00:00,33.95,91.54,25.47,33.03,10.01,0.87,28.97,20.66,7.66,1.81,7.61,0.39 +2019-07-04 04:00:00,35.78,96.42,24.97,29.18,9.36,0.87,25.29,20.25,7.31,1.63,7.6,0.68 +2019-07-04 05:00:00,34.99,90.63,25.6,26.65,9.31,0.88,26.48,21.29,8.11,1.53,8.26,0.43 +2019-07-04 06:00:00,33.17,87.48,25.52,25.77,9.09,0.94,23.71,21.72,8.51,1.6,8.3,1.08 +2019-07-04 07:00:00,34.38,92.92,28.16,25.71,9.66,1.03,22.32,25.75,11.66,1.6,10.52,1.14 +2019-07-04 08:00:00,40.2,104.93,29.93,26.19,9.85,1.11,21.65,30.3,15.95,1.76,11.54,1.36 +2019-07-04 09:00:00,40.17,101.81,26.32,26.33,9.57,1.09,30.67,25.64,12.5,1.57,11.06,1.7 +2019-07-04 10:00:00,33.19,98.44,22.77,25.95,9.69,1.04,37.0,21.79,10.35,1.4,6.88,1.22 +2019-07-04 11:00:00,32.59,104.79,24.82,26.09,9.72,1.05,50.19,21.86,9.21,1.47,7.82,0.54 +2019-07-04 12:00:00,33.16,106.01,24.66,29.0,9.79,1.01,50.95,20.95,8.23,1.78,10.22,0.36 +2019-07-04 13:00:00,42.09,110.28,23.89,28.71,9.66,0.99,47.0,22.13,9.3,1.98,35.87,0.32 +2019-07-04 14:00:00,50.26,102.34,26.63,28.29,9.24,0.99,35.82,21.87,9.05,1.91,38.7,0.6 +2019-07-04 15:00:00,37.27,82.51,25.41,26.68,9.24,0.96,26.89,20.91,9.34,1.72,34.05,0.5 +2019-07-04 16:00:00,27.62,57.61,26.89,31.49,9.17,1.0,23.53,23.56,10.82,1.82,22.92,0.5 +2019-07-04 17:00:00,33.88,54.03,27.88,29.39,9.12,1.1,22.7,23.36,9.9,1.8,42.85,0.7 +2019-07-04 18:00:00,36.49,53.13,34.87,28.86,9.71,1.16,17.45,31.72,15.07,2.31,36.64,0.4 +2019-07-04 19:00:00,36.69,56.73,40.34,28.69,9.88,1.38,16.56,37.24,19.05,3.79,43.83,0.7 +2019-07-04 20:00:00,39.24,64.64,40.09,29.29,10.24,1.49,16.72,41.29,22.94,3.98,36.74,0.68 +2019-07-04 21:00:00,40.37,76.66,39.47,30.95,10.74,1.58,16.46,43.27,25.75,4.0,51.17,1.19 +2019-07-04 22:00:00,45.44,91.6,37.74,31.91,11.47,1.61,16.48,41.84,25.35,4.4,36.33,1.7 +2019-07-04 23:00:00,51.6,105.84,38.14,31.11,11.57,1.69,17.4,45.36,29.29,4.81,36.03,1.42 +2019-07-05 00:00:00,59.4,119.66,40.78,34.32,11.28,1.69,23.8,50.42,33.47,4.44,38.25,1.16 +2019-07-05 01:00:00,54.69,113.56,41.0,35.47,10.75,1.48,18.95,51.65,34.44,4.08,41.66,1.57 +2019-07-05 02:00:00,48.5,99.52,38.0,37.56,9.84,1.2,23.6,40.44,22.71,3.12,29.64,2.55 +2019-07-05 03:00:00,47.93,84.92,33.24,39.91,10.02,1.08,20.11,34.14,18.31,2.51,24.13,2.41 +2019-07-05 04:00:00,56.92,93.5,30.5,36.01,10.47,1.08,15.46,32.61,18.12,2.71,22.68,1.6 +2019-07-05 05:00:00,65.44,110.94,27.29,36.67,11.1,1.1,13.54,32.1,19.82,3.38,28.84,0.73 +2019-07-05 06:00:00,69.34,120.52,26.23,36.6,11.12,1.16,15.32,32.56,21.23,3.42,24.81,0.82 +2019-07-05 07:00:00,71.0,121.43,26.97,35.84,11.73,1.26,25.23,34.41,23.19,3.09,24.43,0.64 +2019-07-05 08:00:00,68.91,124.95,30.81,37.43,12.26,1.32,15.71,39.27,26.71,3.0,25.11,1.03 +2019-07-05 09:00:00,73.64,142.99,37.12,37.99,12.39,1.39,14.91,42.51,26.37,3.1,22.6,1.1 +2019-07-05 10:00:00,71.77,142.37,41.17,37.87,12.44,1.38,20.51,39.44,20.35,3.06,20.35,1.25 +2019-07-05 11:00:00,54.92,126.14,38.19,39.02,12.68,1.24,25.91,34.58,16.45,3.11,19.55,1.48 +2019-07-05 12:00:00,51.0,114.34,33.99,37.61,11.8,1.15,31.03,28.43,11.84,2.67,17.59,0.63 +2019-07-05 13:00:00,52.68,107.94,32.95,37.17,11.24,1.06,35.55,25.05,8.77,2.36,26.98,0.48 +2019-07-05 14:00:00,44.12,85.18,32.84,36.74,10.47,1.06,33.0,25.27,9.09,2.06,24.03,0.19 +2019-07-05 15:00:00,35.03,81.18,36.39,38.41,10.56,1.15,30.93,28.36,10.55,2.1,17.32,1.38 +2019-07-05 16:00:00,40.48,89.85,35.34,37.45,10.3,1.08,30.68,27.66,10.04,2.58,20.97,0.7 +2019-07-05 17:00:00,40.45,88.26,34.15,39.17,10.46,1.0,30.16,26.98,10.42,2.93,25.65,0.8 +2019-07-05 18:00:00,28.64,71.86,33.18,37.14,12.44,0.98,28.91,30.18,18.87,2.3,25.85,1.07 +2019-07-05 19:00:00,25.58,69.16,35.58,36.49,12.5,1.03,22.68,34.29,15.3,2.53,20.48,0.97 +2019-07-05 20:00:00,21.89,69.78,36.98,37.28,10.52,1.12,16.66,32.61,12.87,2.6,16.83,0.82 +2019-07-05 21:00:00,24.38,71.18,38.1,42.61,9.64,1.26,18.44,32.67,12.94,2.64,18.53,0.33 +2019-07-05 22:00:00,28.93,73.54,39.74,43.06,9.65,1.3,18.02,34.78,15.62,2.78,32.97,1.39 +2019-07-05 23:00:00,30.86,76.73,33.98,35.2,9.58,1.2,15.24,31.42,15.48,2.58,29.45,1.76 +2019-07-06 00:00:00,27.18,75.35,32.58,35.53,9.25,1.07,14.9,27.79,12.49,2.02,24.21,1.42 +2019-07-06 01:00:00,26.84,72.04,32.06,36.72,9.28,0.99,16.46,26.36,11.32,1.75,20.54,1.62 +2019-07-06 02:00:00,25.46,67.92,32.65,42.54,9.41,0.93,17.71,27.61,12.08,1.77,18.59,1.63 +2019-07-06 03:00:00,25.83,68.06,32.46,37.72,10.29,0.94,15.12,31.17,16.67,1.55,16.96,1.01 +2019-07-06 04:00:00,27.61,67.29,32.3,35.13,9.38,0.97,12.92,34.0,18.56,1.65,18.93,0.74 +2019-07-06 05:00:00,29.77,69.81,33.47,34.29,9.19,0.95,15.47,39.31,24.78,1.75,18.82,0.43 +2019-07-06 06:00:00,31.08,71.98,32.64,33.04,9.62,1.03,15.11,41.02,26.69,1.95,24.03,0.36 +2019-07-06 07:00:00,37.89,86.2,32.51,33.31,10.34,1.09,13.22,36.59,24.72,1.93,16.41,0.15 +2019-07-06 08:00:00,50.68,107.37,33.44,36.77,11.05,1.12,16.61,32.99,18.37,1.98,16.16,0.85 +2019-07-06 09:00:00,55.46,117.99,31.52,38.66,11.37,1.12,22.38,28.28,13.71,1.83,12.05,1.34 +2019-07-06 10:00:00,42.56,111.96,27.68,41.14,11.44,0.98,30.43,23.43,10.06,1.64,10.08,1.05 +2019-07-06 11:00:00,38.98,107.72,25.45,37.02,11.0,1.06,46.73,20.5,7.67,1.71,10.79,0.76 +2019-07-06 12:00:00,45.45,112.98,28.74,41.43,11.51,1.02,61.94,24.91,7.59,2.13,16.18,0.35 +2019-07-06 13:00:00,51.33,118.05,25.48,41.2,11.21,0.99,63.07,20.37,5.7,2.29,13.02,0.09 +2019-07-06 14:00:00,39.38,96.65,25.1,38.24,11.07,0.88,62.32,19.96,5.49,1.86,9.99,0.16 +2019-07-06 15:00:00,38.5,87.88,25.92,36.31,11.26,0.89,59.24,20.38,5.87,2.07,11.19,0.07 +2019-07-06 16:00:00,33.03,88.64,24.76,36.82,9.6,0.85,55.55,18.43,5.16,1.86,13.11,0.06 +2019-07-06 17:00:00,31.35,82.31,31.52,40.07,9.01,0.81,52.49,16.98,9.11,2.28,22.51,0.05 +2019-07-06 18:00:00,28.32,80.58,25.19,38.98,9.38,0.89,50.22,19.9,16.56,2.11,19.64,0.05 +2019-07-06 19:00:00,29.92,89.23,29.9,38.54,9.43,1.01,42.54,22.93,7.29,2.43,16.15,0.03 +2019-07-06 20:00:00,28.67,92.28,30.08,35.02,9.64,1.05,35.17,22.83,6.39,2.04,14.16,0.08 +2019-07-06 21:00:00,25.93,86.17,30.59,32.34,9.8,1.09,31.49,23.06,6.76,2.04,14.96,0.23 +2019-07-06 22:00:00,25.53,71.19,31.54,30.89,10.31,1.16,27.59,24.57,8.24,1.98,12.81,0.49 +2019-07-06 23:00:00,25.25,70.47,30.2,30.75,10.49,1.12,30.32,23.43,7.74,1.77,11.41,0.34 +2019-07-07 00:00:00,26.76,74.59,29.97,32.68,10.43,1.08,27.22,24.13,9.45,1.61,10.79,0.27 +2019-07-07 01:00:00,26.87,74.09,27.65,33.42,10.25,0.96,28.72,23.84,10.67,1.52,8.74,0.21 +2019-07-07 02:00:00,25.22,78.23,24.87,38.59,10.38,0.9,28.66,19.71,6.92,1.42,7.01,0.34 +2019-07-07 03:00:00,23.53,54.1,23.24,35.13,11.08,0.85,23.87,19.51,7.73,1.33,6.76,0.24 +2019-07-07 04:00:00,23.55,54.11,24.1,33.58,10.12,0.84,24.0,19.63,7.25,1.44,8.5,0.14 +2019-07-07 05:00:00,27.66,57.3,24.33,32.43,10.81,0.87,21.21,20.77,8.1,1.6,8.68,0.0 +2019-07-07 06:00:00,27.38,62.04,27.66,30.84,11.54,0.94,22.89,24.07,10.07,1.57,11.51,0.09 +2019-07-07 07:00:00,35.76,82.48,28.03,30.66,12.02,1.01,18.67,28.56,14.71,2.07,13.46,0.06 +2019-07-07 08:00:00,43.97,92.44,27.56,31.96,12.74,0.98,27.38,28.51,14.91,1.89,12.5,0.16 +2019-07-07 09:00:00,48.21,93.51,26.94,34.86,12.52,0.97,36.89,27.53,14.15,1.93,11.08,0.14 +2019-07-07 10:00:00,51.35,102.13,26.32,34.84,11.64,0.96,43.56,23.31,9.91,1.96,9.85,0.24 +2019-07-07 11:00:00,54.38,115.47,25.02,32.97,11.75,0.95,51.34,22.12,9.39,2.08,12.65,0.17 +2019-07-07 12:00:00,49.85,111.5,23.82,31.74,11.22,0.89,58.81,20.88,9.05,2.05,13.65,0.13 +2019-07-07 13:00:00,42.49,97.04,26.64,34.52,10.52,0.95,66.67,20.56,6.92,1.85,16.02,0.01 +2019-07-07 14:00:00,41.09,93.09,21.23,33.57,10.23,0.99,57.39,18.04,7.2,1.92,13.81,0.03 +2019-07-07 15:00:00,35.86,89.46,25.67,31.61,10.04,1.07,49.55,23.65,10.19,1.9,13.87,0.1 +2019-07-07 16:00:00,35.24,82.28,21.77,32.59,10.01,1.02,64.34,22.57,10.6,1.97,11.79,0.02 +2019-07-07 17:00:00,41.24,86.51,22.93,35.82,9.74,1.0,67.11,24.76,12.67,1.8,10.62,0.03 +2019-07-07 18:00:00,42.93,98.81,28.62,33.54,9.61,1.14,57.26,27.48,12.59,1.95,15.48,0.08 +2019-07-07 19:00:00,39.67,111.32,31.75,28.16,9.71,1.13,49.36,26.27,10.0,1.97,19.32,0.1 +2019-07-07 20:00:00,40.92,107.97,36.24,29.3,9.56,1.25,39.21,28.66,10.35,2.43,18.7,0.12 +2019-07-07 21:00:00,43.95,123.87,43.06,28.49,9.56,1.54,23.66,33.46,11.31,2.72,19.88,0.26 +2019-07-07 22:00:00,49.78,132.32,46.3,28.14,10.06,1.74,18.5,39.35,15.86,3.12,22.5,0.38 +2019-07-07 23:00:00,53.81,128.29,49.08,25.76,10.51,1.79,21.55,47.78,24.38,3.26,26.01,0.46 +2019-07-08 00:00:00,56.26,144.14,46.07,27.56,10.4,1.67,16.06,45.07,22.96,3.01,24.46,0.33 +2019-07-08 01:00:00,54.05,144.98,37.34,30.48,10.54,1.19,15.91,35.98,17.29,2.36,17.58,0.39 +2019-07-08 02:00:00,49.88,142.95,33.18,35.45,10.76,0.98,20.49,30.37,12.87,1.98,13.16,0.12 +2019-07-08 03:00:00,44.5,137.82,27.28,40.66,11.22,0.85,22.11,25.95,12.63,1.74,9.98,0.07 +2019-07-08 04:00:00,41.05,131.83,24.85,35.48,9.6,0.82,20.75,22.27,9.66,1.7,8.62,0.15 +2019-07-08 05:00:00,41.86,130.87,24.72,31.98,9.51,0.83,17.99,21.67,9.68,1.88,8.63,0.16 +2019-07-08 06:00:00,40.74,122.91,27.53,31.29,10.34,0.9,16.33,25.68,13.13,1.82,9.83,0.07 +2019-07-08 07:00:00,41.9,128.3,29.65,30.4,11.0,1.12,21.92,33.41,20.41,1.91,12.35,0.18 +2019-07-08 08:00:00,45.35,150.5,30.05,29.04,11.61,1.12,21.57,30.38,16.12,1.85,11.17,0.22 +2019-07-08 09:00:00,49.88,165.78,26.96,33.24,11.87,1.04,33.15,25.78,12.05,1.86,10.83,0.2 +2019-07-08 10:00:00,58.42,173.64,26.72,33.23,11.58,1.01,35.46,25.1,10.92,1.9,10.11,0.1 +2019-07-08 11:00:00,58.55,172.84,27.1,35.66,11.39,1.08,44.91,24.06,9.78,1.79,10.34,0.07 +2019-07-08 12:00:00,56.46,171.96,30.34,37.79,10.82,1.04,58.55,23.1,7.18,1.8,10.34,0.11 +2019-07-08 13:00:00,57.93,177.98,28.07,37.06,11.24,1.11,64.47,21.21,6.42,1.77,10.98,0.06 +2019-07-08 14:00:00,56.35,163.14,24.65,34.97,12.3,1.06,60.9,19.82,6.68,1.78,11.53,0.11 +2019-07-08 15:00:00,48.79,139.26,27.95,33.61,11.28,1.04,59.21,22.82,7.79,2.42,17.95,0.17 +2019-07-08 16:00:00,44.65,120.9,27.77,35.15,9.79,1.03,69.02,22.2,7.51,2.05,14.9,0.13 +2019-07-08 17:00:00,53.47,158.6,32.25,34.48,9.36,1.07,51.02,28.11,11.77,2.27,22.22,1.31 +2019-07-08 18:00:00,46.52,143.52,42.59,34.03,10.01,1.23,43.61,32.37,24.04,2.39,26.93,0.61 +2019-07-08 19:00:00,43.98,140.16,44.29,33.18,10.12,1.39,37.37,32.16,9.91,2.73,25.86,1.91 +2019-07-08 20:00:00,46.04,148.59,43.55,34.45,9.99,1.42,33.57,32.38,10.19,3.32,27.81,3.58 +2019-07-08 21:00:00,44.78,150.87,42.31,32.14,10.04,1.51,25.83,35.88,14.06,3.16,30.46,3.35 +2019-07-08 22:00:00,48.07,154.31,44.18,31.17,10.32,1.64,25.85,38.11,16.2,3.13,26.03,3.31 +2019-07-08 23:00:00,49.43,155.15,39.05,29.73,10.31,1.45,26.66,31.9,12.17,2.59,21.38,2.84 +2019-07-09 00:00:00,50.18,141.68,35.81,30.2,9.96,1.28,23.44,29.67,11.36,2.14,16.62,2.38 +2019-07-09 01:00:00,52.19,137.67,32.85,31.09,9.39,1.29,23.08,26.37,9.27,2.0,16.43,2.95 +2019-07-09 02:00:00,48.24,127.55,30.86,35.65,9.23,1.14,21.78,24.64,8.8,1.98,13.49,1.4 +2019-07-09 03:00:00,46.53,123.75,28.64,33.83,10.26,1.05,22.1,23.87,9.77,1.73,14.62,2.06 +2019-07-09 04:00:00,39.57,114.82,25.68,31.26,9.77,1.08,20.45,23.54,10.91,1.62,16.81,2.47 +2019-07-09 05:00:00,33.56,99.79,23.88,31.77,9.31,0.8,17.44,21.68,9.57,1.43,14.17,1.8 +2019-07-09 06:00:00,31.9,86.86,25.95,30.93,9.27,0.86,21.73,23.45,10.87,1.3,18.0,1.27 +2019-07-09 07:00:00,30.03,85.77,26.87,29.33,9.36,0.88,19.78,26.81,14.07,1.32,14.83,0.93 +2019-07-09 08:00:00,31.69,100.05,26.35,27.98,9.47,1.1,17.12,29.07,17.27,1.2,14.22,1.08 +2019-07-09 09:00:00,34.43,120.53,24.47,30.59,9.3,0.92,21.46,27.34,16.18,1.26,14.21,0.85 +2019-07-09 10:00:00,41.53,127.26,24.71,29.09,9.31,1.0,24.65,26.77,15.41,1.31,14.27,0.89 +2019-07-09 11:00:00,43.48,141.21,25.63,29.25,9.77,0.98,30.62,27.01,15.06,1.52,12.63,1.05 +2019-07-09 12:00:00,47.04,162.51,29.72,35.89,9.26,0.93,32.19,28.85,16.75,1.47,13.0,0.66 +2019-07-09 13:00:00,50.04,174.22,25.29,34.25,8.98,0.94,29.02,22.47,11.35,1.34,12.67,0.93 +2019-07-09 14:00:00,55.43,183.24,23.31,33.09,8.97,0.95,27.78,24.35,14.14,1.93,15.22,0.68 +2019-07-09 15:00:00,50.86,172.24,22.77,30.7,8.7,1.04,26.89,22.91,12.82,1.38,15.16,1.38 +2019-07-09 16:00:00,46.36,144.53,22.86,30.69,8.74,1.08,32.19,19.5,8.49,1.66,22.47,1.08 +2019-07-09 17:00:00,44.48,118.63,26.66,33.33,8.71,1.14,38.14,21.38,8.05,2.02,27.45,0.88 +2019-07-09 18:00:00,38.13,104.89,29.96,33.8,9.22,1.19,41.35,26.06,11.99,2.3,27.39,1.01 +2019-07-09 19:00:00,37.66,106.77,37.57,31.28,9.75,1.32,29.91,28.11,8.69,3.05,27.29,1.31 +2019-07-09 20:00:00,38.87,120.77,43.02,32.15,9.9,1.28,31.0,30.63,8.85,3.6,29.61,1.0 +2019-07-09 21:00:00,42.44,131.0,47.52,34.83,10.16,1.51,24.39,36.31,12.34,3.47,31.88,1.6 +2019-07-09 22:00:00,42.93,135.67,45.98,35.9,10.7,1.56,21.21,36.14,12.89,2.95,27.37,3.39 +2019-07-09 23:00:00,43.9,125.09,42.86,35.7,11.03,1.43,20.19,33.46,11.48,2.6,22.83,2.89 +2019-07-10 00:00:00,41.45,105.69,40.09,35.19,11.07,1.29,19.55,31.97,11.54,2.29,18.33,2.08 +2019-07-10 01:00:00,42.26,98.95,36.35,35.42,10.95,1.12,24.7,29.56,11.07,2.13,14.66,1.44 +2019-07-10 02:00:00,43.47,97.75,32.48,35.47,10.57,0.97,22.44,26.67,10.01,1.77,12.68,2.03 +2019-07-10 03:00:00,41.66,92.67,32.18,35.11,11.6,0.85,15.37,28.67,12.9,1.66,12.47,1.25 +2019-07-10 04:00:00,39.15,89.2,28.47,29.58,10.07,0.91,20.14,23.55,9.22,1.62,11.59,1.7 +2019-07-10 05:00:00,38.0,92.23,27.73,29.77,9.58,0.91,18.13,23.46,9.67,1.71,11.7,1.0 +2019-07-10 06:00:00,42.9,120.88,27.16,30.7,9.88,0.99,17.01,25.02,11.76,1.8,13.32,1.41 +2019-07-10 07:00:00,49.52,112.89,27.72,29.68,10.44,1.06,20.71,27.28,14.52,2.06,15.44,1.18 +2019-07-10 08:00:00,61.34,129.57,29.36,29.14,10.79,1.16,24.81,29.49,15.79,2.07,14.98,0.56 +2019-07-10 09:00:00,61.3,141.94,31.85,31.46,10.93,1.14,31.21,31.16,15.95,1.91,14.13,1.19 +2019-07-10 10:00:00,54.95,156.08,29.98,30.9,10.7,1.11,31.24,28.31,14.23,1.83,11.56,0.98 +2019-07-10 11:00:00,51.86,178.97,26.74,30.81,10.74,1.03,26.38,25.54,12.76,1.73,13.28,1.06 +2019-07-10 12:00:00,53.64,230.64,23.51,32.86,10.13,0.94,28.24,22.26,12.21,2.17,12.47,0.48 +2019-07-10 13:00:00,65.24,300.71,23.79,35.71,10.33,0.81,31.98,21.97,11.0,2.49,13.47,1.03 +2019-07-10 14:00:00,78.55,386.28,23.81,36.0,10.15,0.8,37.62,21.9,10.42,2.34,13.0,0.43 +2019-07-10 15:00:00,89.16,454.48,24.22,36.19,9.83,0.9,44.35,22.48,10.34,2.05,14.77,0.61 +2019-07-10 16:00:00,100.14,494.47,25.07,42.78,9.49,0.89,42.66,23.2,10.83,1.97,15.25,0.6 +2019-07-10 17:00:00,99.57,484.92,23.87,41.82,8.95,0.92,43.05,23.88,12.17,2.08,13.15,0.57 +2019-07-10 18:00:00,101.69,509.67,24.85,38.71,8.89,0.89,42.38,25.32,13.17,1.67,16.17,0.64 +2019-07-10 19:00:00,104.65,552.37,32.56,33.91,9.07,0.92,40.13,31.54,15.58,2.24,18.36,0.64 +2019-07-10 20:00:00,106.23,546.66,44.14,33.62,9.38,1.11,30.88,39.37,18.35,2.46,21.95,1.43 +2019-07-10 21:00:00,101.88,484.06,46.21,33.09,11.04,1.37,24.49,43.73,21.12,3.36,30.7,1.4 +2019-07-10 22:00:00,95.78,427.43,45.05,31.35,11.32,1.39,22.12,45.29,24.09,4.0,33.54,0.98 +2019-07-10 23:00:00,96.73,400.47,45.47,30.33,13.88,1.44,28.03,46.92,26.48,4.23,23.99,0.97 +2019-07-11 00:00:00,97.71,384.0,47.17,30.33,11.38,1.58,21.66,58.29,38.88,3.27,24.7,2.0 +2019-07-11 01:00:00,97.38,373.57,43.79,37.93,11.33,1.34,20.86,57.34,39.93,3.23,31.34,1.82 +2019-07-11 02:00:00,85.76,317.54,36.3,40.83,10.42,0.91,17.49,36.94,19.88,2.96,22.75,2.87 +2019-07-11 03:00:00,66.78,226.2,29.23,34.54,10.85,0.67,16.48,25.83,11.0,2.18,21.04,2.2 +2019-07-11 04:00:00,53.96,184.12,25.31,32.57,10.17,0.63,16.98,23.51,11.05,1.93,20.13,1.78 +2019-07-11 05:00:00,48.85,164.18,23.37,29.7,9.94,0.63,17.58,23.6,12.16,1.55,16.87,0.69 +2019-07-11 06:00:00,42.06,154.72,23.97,30.54,9.79,0.63,16.39,26.63,15.5,1.36,17.28,0.66 +2019-07-11 07:00:00,42.8,167.69,27.2,28.41,9.88,0.86,19.87,32.55,20.33,1.45,19.66,0.92 +2019-07-11 08:00:00,47.59,192.95,28.94,28.52,9.75,0.93,16.37,36.51,24.03,1.52,18.97,0.78 +2019-07-11 09:00:00,53.3,239.71,26.52,30.12,9.23,0.93,19.65,31.59,19.9,1.48,15.05,0.25 +2019-07-11 10:00:00,61.8,318.34,29.73,29.49,8.82,0.92,23.05,30.67,17.2,1.36,14.84,0.7 +2019-07-11 11:00:00,86.61,503.12,22.61,29.83,9.1,0.87,29.88,24.97,14.28,1.35,12.75,0.81 +2019-07-11 12:00:00,94.53,546.34,24.23,31.42,8.54,0.77,37.72,25.14,13.73,1.92,15.1,0.81 +2019-07-11 13:00:00,91.5,499.81,22.55,35.28,8.58,0.84,37.71,23.63,13.68,1.38,15.77,0.68 +2019-07-11 14:00:00,95.8,511.82,22.65,34.23,8.47,0.86,39.21,21.88,11.13,1.44,13.68,0.66 +2019-07-11 15:00:00,97.01,536.33,23.15,35.46,8.32,0.9,43.48,20.56,9.55,1.78,15.26,0.58 +2019-07-11 16:00:00,98.72,549.15,22.9,35.44,8.23,0.89,47.54,22.76,11.5,1.85,18.64,0.48 +2019-07-11 17:00:00,97.69,538.27,23.32,35.52,8.58,0.92,48.16,21.69,9.66,1.49,27.68,0.32 +2019-07-11 18:00:00,92.3,479.5,26.81,30.48,9.33,1.06,49.14,22.69,8.15,1.94,24.44,0.88 +2019-07-11 19:00:00,92.92,438.25,32.87,31.31,10.02,1.16,44.82,24.64,7.32,2.1,26.38,0.49 +2019-07-11 20:00:00,86.58,378.78,37.89,29.35,9.84,1.21,40.63,27.68,7.3,2.75,31.04,0.04 +2019-07-11 21:00:00,79.87,301.29,42.07,29.63,10.16,1.25,32.62,30.57,8.43,3.09,29.22,1.58 +2019-07-11 22:00:00,69.97,239.58,37.95,29.44,10.49,1.24,29.69,27.62,7.94,2.81,24.05,1.36 +2019-07-11 23:00:00,66.24,208.96,36.43,29.12,10.24,1.26,29.08,27.24,7.58,2.79,21.88,1.88 +2019-07-12 00:00:00,67.4,198.58,34.17,28.66,10.34,1.16,24.78,26.35,7.75,2.13,19.64,1.06 +2019-07-12 01:00:00,65.32,186.44,31.08,30.68,9.16,0.96,21.03,25.33,8.5,1.9,17.71,1.48 +2019-07-12 02:00:00,61.71,165.78,28.43,33.16,8.92,0.96,23.65,23.42,8.54,1.48,14.65,1.33 +2019-07-12 03:00:00,60.16,156.46,31.75,34.01,9.49,1.12,19.58,28.16,12.12,1.6,13.43,1.04 +2019-07-12 04:00:00,56.96,153.1,30.16,28.52,8.52,1.13,17.99,27.94,12.71,1.64,14.65,1.05 +2019-07-12 05:00:00,54.32,146.67,27.26,28.66,8.96,1.07,17.81,27.03,13.45,1.76,22.51,1.28 +2019-07-12 06:00:00,45.84,148.14,25.82,29.35,9.05,1.13,20.18,29.02,16.77,1.56,20.87,1.32 +2019-07-12 07:00:00,46.76,173.14,25.8,30.4,9.13,0.91,15.76,30.6,18.71,1.46,17.1,1.1 +2019-07-12 08:00:00,49.15,225.12,24.9,34.96,9.22,0.97,17.76,34.31,23.96,1.37,11.42,0.42 +2019-07-12 09:00:00,53.82,289.01,23.92,39.25,9.23,0.91,20.99,32.86,23.7,1.59,11.32,0.19 +2019-07-12 10:00:00,63.68,377.58,22.19,38.3,8.73,0.88,22.77,27.28,18.01,1.53,12.88,0.3 +2019-07-12 11:00:00,81.87,486.8,20.16,34.5,8.55,0.87,27.38,23.99,14.67,1.67,14.36,0.71 +2019-07-12 12:00:00,102.09,574.61,21.49,34.97,8.69,0.83,34.72,24.38,13.58,1.42,16.87,0.08 +2019-07-12 13:00:00,109.94,623.06,21.86,37.39,8.41,0.8,36.15,23.06,13.05,1.83,18.08,0.0 +2019-07-12 14:00:00,122.92,663.35,20.21,37.72,8.31,0.84,38.35,21.42,12.12,2.17,18.22,0.0 +2019-07-12 15:00:00,115.02,664.33,19.87,36.61,7.68,0.87,40.47,22.24,12.56,1.78,14.37,0.0 +2019-07-12 16:00:00,102.65,604.97,19.27,35.64,8.03,0.9,43.37,21.77,12.35,1.55,17.7,0.0 +2019-07-12 17:00:00,87.54,492.73,20.19,36.14,7.66,0.92,39.86,21.27,10.92,1.63,19.64,0.0 +2019-07-12 18:00:00,72.84,416.56,25.83,35.16,8.25,0.94,36.41,23.65,10.14,1.63,19.14,0.01 +2019-07-12 19:00:00,74.69,386.34,27.55,32.18,9.13,1.04,34.7,26.02,11.48,2.53,28.12,0.04 +2019-07-12 20:00:00,75.82,391.67,32.89,29.51,9.51,1.3,31.1,32.42,15.98,2.79,25.04,0.01 +2019-07-12 21:00:00,78.54,387.52,37.22,30.23,10.12,1.51,29.72,35.59,17.29,3.56,27.64,0.01 +2019-07-12 22:00:00,89.23,399.75,38.28,29.27,9.67,1.59,30.85,33.94,15.88,3.55,24.57,0.14 +2019-07-12 23:00:00,94.13,417.12,36.9,29.79,10.22,1.47,35.79,30.45,11.84,3.44,25.85,0.04 +2019-07-13 00:00:00,89.14,396.45,36.56,28.84,10.22,1.38,42.06,32.1,13.03,2.82,19.6,0.17 +2019-07-13 01:00:00,84.87,377.0,33.67,29.82,10.05,1.21,40.04,31.68,14.22,2.36,18.91,0.16 +2019-07-13 02:00:00,76.43,319.18,29.91,34.95,9.81,1.08,19.72,29.52,14.52,2.17,22.32,0.04 +2019-07-13 03:00:00,56.99,209.55,23.43,32.96,10.42,0.82,18.31,22.12,10.42,2.16,20.98,0.04 +2019-07-13 04:00:00,37.73,130.85,22.91,29.65,9.1,0.78,18.4,21.33,9.57,1.58,22.1,0.03 +2019-07-13 05:00:00,35.5,119.7,20.02,28.52,8.88,0.77,19.9,19.03,8.72,1.21,22.98,0.13 +2019-07-13 06:00:00,33.42,129.24,18.58,29.13,8.75,0.78,21.16,18.93,9.32,1.11,21.22,0.11 +2019-07-13 07:00:00,39.19,140.46,18.39,30.01,8.99,0.82,20.38,19.51,10.17,1.34,20.17,0.06 +2019-07-13 08:00:00,40.68,160.34,17.98,28.27,9.01,0.86,20.93,19.05,9.53,1.24,15.81,0.04 +2019-07-13 09:00:00,38.9,204.01,17.33,31.03,8.72,0.88,27.41,17.79,8.87,1.16,15.69,0.02 +2019-07-13 10:00:00,48.41,333.86,15.95,30.52,8.89,0.92,27.84,16.83,9.06,1.15,16.87,0.04 +2019-07-13 11:00:00,74.26,510.5,16.44,29.1,8.44,0.86,34.6,21.37,14.21,1.99,13.97,0.05 +2019-07-13 12:00:00,94.66,521.41,17.53,30.6,8.74,0.86,36.27,19.38,11.23,2.02,14.8,0.18 +2019-07-13 13:00:00,82.91,447.39,17.29,29.58,8.62,0.8,39.47,20.37,11.68,2.91,14.96,0.08 +2019-07-13 14:00:00,84.79,420.4,17.28,28.35,8.68,0.82,41.26,20.03,11.12,1.76,19.0,0.07 +2019-07-13 15:00:00,80.85,396.91,17.75,28.72,8.52,0.82,41.26,20.13,10.72,1.93,17.01,0.01 +2019-07-13 16:00:00,78.17,360.12,19.25,26.81,8.49,0.82,39.82,22.06,12.11,1.75,12.68,0.01 +2019-07-13 17:00:00,71.09,338.08,21.15,27.3,8.5,0.86,40.2,25.29,14.91,1.92,13.88,0.0 +2019-07-13 18:00:00,66.37,299.9,22.7,28.41,8.94,0.89,38.39,25.14,13.7,2.18,15.83,0.01 +2019-07-13 19:00:00,57.32,266.69,26.09,27.11,8.98,0.97,33.24,25.91,12.11,1.61,26.13,0.0 +2019-07-13 20:00:00,60.63,271.49,31.61,25.46,9.23,1.16,32.14,28.63,12.09,2.32,24.47,0.03 +2019-07-13 21:00:00,64.17,267.14,30.62,24.34,9.08,1.3,31.72,25.51,9.27,2.35,20.51,0.06 +2019-07-13 22:00:00,61.49,230.36,30.02,24.02,9.6,1.33,28.37,23.69,7.42,2.58,18.08,0.12 +2019-07-13 23:00:00,58.35,211.42,32.64,23.19,10.08,1.37,26.49,26.11,8.19,2.53,18.1,0.12 +2019-07-14 00:00:00,65.28,239.51,36.3,23.92,10.72,1.36,25.9,29.68,9.82,2.45,18.73,0.15 +2019-07-14 01:00:00,65.98,265.76,36.6,25.14,11.15,1.15,37.39,32.35,12.59,2.4,16.51,0.04 +2019-07-14 02:00:00,65.14,250.65,34.96,27.66,9.88,1.03,26.5,31.1,11.98,2.01,13.7,0.04 +2019-07-14 03:00:00,62.12,237.74,33.43,27.13,10.12,1.02,22.48,30.27,11.62,2.09,13.43,0.1 +2019-07-14 04:00:00,60.08,230.56,31.7,22.85,8.72,1.0,20.01,30.53,13.13,1.93,12.64,0.02 +2019-07-14 05:00:00,59.45,201.65,26.39,22.83,8.98,0.91,17.7,29.98,16.04,1.95,14.54,0.05 +2019-07-14 06:00:00,47.33,156.81,22.06,23.66,8.76,0.92,18.86,30.3,18.92,1.61,12.62,0.01 +2019-07-14 07:00:00,39.85,166.94,22.57,25.14,9.21,0.84,21.31,33.2,22.39,1.24,11.23,0.12 +2019-07-14 08:00:00,46.14,213.46,20.59,29.81,9.63,0.76,21.59,30.34,21.29,1.12,9.57,0.13 +2019-07-14 09:00:00,53.55,286.09,21.31,27.73,9.77,0.71,25.4,28.32,20.26,1.1,9.57,0.04 +2019-07-14 10:00:00,65.47,407.13,19.03,28.2,9.36,0.73,31.25,23.51,14.06,1.04,9.02,0.08 +2019-07-14 11:00:00,72.42,418.03,18.89,28.13,9.43,0.8,36.58,21.98,12.39,1.3,13.76,0.01 +2019-07-14 12:00:00,70.16,348.33,19.32,30.68,8.93,0.77,39.55,19.85,9.49,1.25,17.0,0.06 +2019-07-14 13:00:00,64.03,304.42,19.79,29.65,9.55,0.84,41.25,19.24,8.5,1.5,12.98,0.02 +2019-07-14 14:00:00,64.51,329.63,17.52,26.81,9.41,0.83,42.61,17.14,7.57,1.27,9.67,0.0 +2019-07-14 15:00:00,72.68,365.79,16.66,26.44,9.27,0.81,45.72,16.83,8.1,0.99,12.3,0.0 +2019-07-14 16:00:00,72.0,386.38,16.85,26.14,9.23,0.88,46.01,16.86,7.97,1.07,12.1,0.0 +2019-07-14 17:00:00,70.28,366.31,18.77,25.5,9.06,0.88,47.63,17.31,6.83,1.05,14.72,0.0 +2019-07-14 18:00:00,70.99,309.36,21.76,28.08,9.22,0.93,45.61,18.08,6.17,1.43,16.19,0.0 +2019-07-14 19:00:00,73.56,315.04,28.79,27.52,9.14,0.97,43.64,22.12,6.12,1.52,19.34,0.0 +2019-07-14 20:00:00,70.34,294.64,28.03,29.03,10.12,1.01,38.47,21.66,6.29,1.64,17.49,0.04 +2019-07-14 21:00:00,67.83,263.26,31.48,27.95,10.45,1.2,31.4,24.79,7.7,1.97,20.07,0.06 +2019-07-14 22:00:00,61.6,222.82,30.73,25.43,12.34,1.23,29.28,24.34,6.68,2.23,17.96,0.07 +2019-07-14 23:00:00,55.15,163.53,28.77,24.76,13.89,1.17,30.37,23.22,6.82,2.02,13.28,0.05 +2019-07-15 00:00:00,41.89,120.39,24.01,24.89,13.48,1.12,30.77,19.67,5.81,1.58,9.86,0.0 +2019-07-15 01:00:00,37.45,93.52,20.13,23.85,11.21,0.99,34.79,16.65,5.07,1.32,8.66,0.02 +2019-07-15 02:00:00,35.47,75.89,19.31,24.57,10.41,0.87,34.89,16.61,5.73,1.27,7.52,0.01 +2019-07-15 03:00:00,27.7,68.16,19.81,27.12,10.48,0.79,29.28,17.14,5.67,1.34,7.01,0.0 +2019-07-15 04:00:00,26.16,66.34,21.82,22.4,9.38,0.9,29.11,18.48,5.95,1.13,8.95,0.0 +2019-07-15 05:00:00,27.7,63.66,18.75,25.34,9.09,0.78,26.48,16.83,5.92,0.95,9.02,0.0 +2019-07-15 06:00:00,25.67,58.52,19.63,24.55,9.03,0.87,22.71,17.78,6.77,0.92,8.63,0.0 +2019-07-15 07:00:00,28.9,59.68,22.4,22.82,10.06,0.88,22.08,19.99,7.39,1.02,6.97,0.0 +2019-07-15 08:00:00,35.28,65.98,23.8,23.49,10.35,0.97,23.04,20.85,7.51,1.25,6.97,0.02 +2019-07-15 09:00:00,35.36,87.99,25.83,24.0,11.69,0.95,23.48,23.52,9.21,1.27,7.61,0.01 +2019-07-15 10:00:00,36.09,111.92,27.33,23.71,11.72,1.06,25.2,25.95,11.45,1.31,7.74,0.0 +2019-07-15 11:00:00,43.7,154.4,29.53,23.73,10.86,1.08,26.31,26.91,11.39,1.53,9.51,0.04 +2019-07-15 12:00:00,53.01,227.64,24.88,26.56,10.06,1.13,32.58,24.22,11.09,1.96,12.21,3.07 +2019-07-15 13:00:00,66.54,326.28,23.41,26.64,9.84,1.02,40.13,22.52,10.03,2.08,21.96,6.98 +2019-07-15 14:00:00,73.25,376.28,23.86,23.75,10.21,1.0,38.5,21.17,7.5,1.82,22.07,2.87 +2019-07-15 15:00:00,70.61,313.66,30.39,24.08,10.7,1.19,39.29,26.05,9.43,2.26,16.9,0.18 +2019-07-15 16:00:00,75.14,302.99,22.89,26.11,10.22,0.98,27.15,20.52,7.56,2.28,24.21,0.17 +2019-07-15 17:00:00,55.38,265.82,22.79,26.29,9.96,0.91,28.07,20.0,7.0,1.88,29.62,0.09 +2019-07-15 18:00:00,23.67,41.36,36.75,25.14,10.26,1.14,19.53,34.95,15.6,2.61,26.73,0.06 +2019-07-15 19:00:00,27.77,60.2,46.45,25.21,10.24,1.65,14.82,57.11,36.0,3.69,36.62,0.45 +2019-07-15 20:00:00,37.76,86.59,40.78,26.42,10.94,1.6,18.23,52.68,34.52,4.24,62.92,0.39 +2019-07-15 21:00:00,40.06,95.62,33.99,27.53,10.11,1.46,25.62,37.39,20.66,3.54,50.92,0.33 +2019-07-15 22:00:00,42.16,91.02,34.48,27.64,9.22,1.41,21.68,30.63,12.6,2.9,29.11,0.26 +2019-07-15 23:00:00,42.14,90.09,39.03,25.8,9.84,1.46,19.67,38.13,17.78,3.08,22.79,0.06 +2019-07-16 00:00:00,43.25,99.84,42.47,27.22,9.61,1.3,27.08,40.09,17.92,3.05,23.03,0.02 +2019-07-16 01:00:00,43.25,100.81,38.84,28.93,9.6,1.05,21.87,35.04,13.95,2.5,19.18,0.0 +2019-07-16 02:00:00,37.4,81.21,31.31,31.07,9.39,0.84,20.49,27.53,10.39,2.08,14.19,0.04 +2019-07-16 03:00:00,30.9,66.59,26.18,28.38,10.27,0.84,18.39,22.02,7.0,1.6,12.19,0.34 +2019-07-16 04:00:00,30.04,63.96,24.68,25.31,9.4,0.93,20.69,21.26,7.25,1.43,11.8,0.26 +2019-07-16 05:00:00,32.99,67.38,22.86,23.66,9.74,0.92,32.19,18.98,6.11,1.47,12.31,0.22 +2019-07-16 06:00:00,30.74,65.07,23.85,23.13,9.22,0.89,25.87,19.23,5.65,1.23,9.92,0.09 +2019-07-16 07:00:00,33.29,69.53,22.3,22.9,9.48,1.05,23.12,19.96,7.55,1.15,10.6,0.1 +2019-07-16 08:00:00,28.88,63.13,23.32,22.26,9.75,1.0,24.63,20.5,7.86,1.34,11.11,0.0 +2019-07-16 09:00:00,22.46,56.63,24.34,24.72,9.67,0.94,31.06,21.67,7.88,1.47,10.49,0.03 +2019-07-16 10:00:00,23.2,59.24,25.59,26.19,9.63,1.08,29.89,21.95,8.15,1.36,11.84,0.02 +2019-07-16 11:00:00,25.01,72.07,27.53,27.39,10.04,1.18,39.34,22.39,7.45,1.59,22.55,0.05 +2019-07-16 12:00:00,28.29,78.96,25.06,32.11,9.9,1.12,43.16,20.6,6.6,1.94,15.87,0.0 +2019-07-16 13:00:00,35.79,94.13,25.49,29.73,9.96,1.14,47.64,20.67,6.28,1.91,21.64,0.01 +2019-07-16 14:00:00,39.02,107.01,26.18,27.04,9.9,0.96,47.21,20.67,5.81,1.99,29.61,0.06 +2019-07-16 15:00:00,37.56,107.23,27.02,25.09,9.98,1.01,42.18,21.69,6.59,1.9,28.59,0.1 +2019-07-16 16:00:00,35.55,97.7,27.61,27.23,10.01,1.05,33.66,23.91,8.64,1.88,27.51,0.02 +2019-07-16 17:00:00,29.7,78.48,22.84,29.29,9.89,1.0,36.12,19.91,7.06,2.09,24.0,0.05 +2019-07-16 18:00:00,26.79,71.51,23.34,29.69,9.57,1.04,37.59,20.33,7.28,2.38,25.99,0.03 +2019-07-16 19:00:00,25.65,74.88,25.77,27.65,9.32,1.03,30.91,21.94,7.65,2.51,25.0,0.03 +2019-07-16 20:00:00,26.99,77.0,28.63,24.76,9.22,1.18,24.55,24.41,8.77,2.78,30.72,0.12 +2019-07-16 21:00:00,28.71,80.11,32.25,22.54,9.14,1.17,21.01,27.29,10.11,2.68,32.14,0.19 +2019-07-16 22:00:00,30.65,83.27,32.52,23.19,8.84,1.21,18.17,28.38,11.15,2.92,25.06,0.22 +2019-07-16 23:00:00,30.14,85.55,31.05,23.98,9.85,1.22,24.5,29.31,13.12,2.58,26.25,0.2 +2019-07-17 00:00:00,32.51,90.3,31.48,27.55,11.04,1.15,23.03,29.55,12.95,2.51,20.03,0.04 +2019-07-17 01:00:00,36.24,91.2,27.28,29.13,9.97,0.99,19.38,25.13,10.53,2.19,19.51,0.15 +2019-07-17 02:00:00,39.02,80.12,24.53,32.51,10.13,0.93,31.8,22.15,8.79,2.22,19.78,0.06 +2019-07-17 03:00:00,43.11,80.01,22.87,31.24,10.25,0.89,35.8,19.97,7.24,2.26,22.79,0.07 +2019-07-17 04:00:00,45.55,75.16,21.31,26.73,8.84,0.83,37.5,18.48,6.57,1.77,20.02,0.11 +2019-07-17 05:00:00,39.78,59.33,21.18,24.41,8.52,0.8,29.37,18.07,6.23,1.39,14.11,0.01 +2019-07-17 06:00:00,35.37,52.67,24.64,23.09,8.44,0.82,19.38,21.44,8.09,1.14,12.36,0.0 +2019-07-17 07:00:00,34.91,52.72,21.96,22.47,8.76,0.79,22.74,22.22,10.53,1.25,12.23,0.0 +2019-07-17 08:00:00,22.19,39.16,22.45,24.39,8.91,0.97,28.13,22.6,10.83,0.94,9.12,0.0 +2019-07-17 09:00:00,11.72,19.21,26.87,26.17,8.54,1.02,25.84,27.84,14.26,1.12,10.9,0.0 +2019-07-17 10:00:00,14.06,23.57,27.49,25.55,8.48,1.08,26.01,28.19,14.06,1.21,13.86,0.0 +2019-07-17 11:00:00,17.56,33.68,28.29,25.26,8.54,1.1,24.83,31.27,17.02,2.05,18.46,0.1 +2019-07-17 12:00:00,21.15,38.88,27.31,25.51,8.2,1.06,25.3,29.94,15.98,2.94,23.98,0.14 +2019-07-17 13:00:00,22.56,47.78,26.41,23.54,8.44,1.03,28.64,26.62,13.04,2.28,15.01,0.31 +2019-07-17 14:00:00,27.6,58.7,29.72,24.03,8.43,1.0,36.33,28.2,11.36,1.76,21.09,0.29 +2019-07-17 15:00:00,36.78,72.81,29.78,23.94,8.23,0.96,44.15,27.74,9.79,3.33,18.72,0.15 +2019-07-17 16:00:00,33.77,74.57,28.68,26.64,8.06,0.94,55.38,25.18,8.03,3.1,18.62,0.05 +2019-07-17 17:00:00,34.71,77.8,26.55,28.54,8.14,0.95,54.86,23.51,7.41,2.89,20.19,0.08 +2019-07-17 18:00:00,34.2,80.76,26.77,27.23,8.19,0.98,51.25,24.86,8.97,2.36,21.36,0.11 +2019-07-17 19:00:00,31.95,79.04,28.73,24.98,8.56,1.03,39.68,26.7,9.89,2.56,30.44,0.01 +2019-07-17 20:00:00,31.74,79.75,31.14,23.77,8.78,1.13,30.58,27.25,9.33,2.71,35.81,0.0 +2019-07-17 21:00:00,36.39,89.91,39.9,23.78,8.81,1.29,23.8,33.23,11.2,3.04,52.4,0.14 +2019-07-17 22:00:00,40.63,104.27,42.56,24.81,9.75,1.48,20.47,37.67,14.84,3.25,45.95,0.23 +2019-07-17 23:00:00,45.86,124.06,44.61,26.58,9.75,1.6,21.36,42.47,18.9,3.49,42.37,0.52 +2019-07-18 00:00:00,56.74,141.3,45.77,28.71,9.99,1.55,28.37,41.43,16.32,3.84,39.83,0.46 +2019-07-18 01:00:00,67.57,157.69,45.47,31.52,9.71,1.45,31.74,39.74,14.29,3.74,40.51,0.48 +2019-07-18 02:00:00,73.05,154.43,36.37,34.76,9.5,1.24,34.92,30.32,9.56,3.03,36.11,0.53 +2019-07-18 03:00:00,60.97,105.96,20.28,30.76,9.72,0.88,27.33,19.64,8.28,2.27,24.33,0.54 +2019-07-18 04:00:00,28.91,40.89,18.22,24.4,8.11,0.83,28.41,17.85,7.4,1.43,21.65,0.25 +2019-07-18 05:00:00,16.71,23.69,20.27,22.04,8.3,0.78,27.39,19.57,8.19,1.17,17.28,0.14 +2019-07-18 06:00:00,14.06,24.29,27.02,21.72,8.31,0.92,22.2,25.19,10.92,1.02,13.8,0.02 +2019-07-18 07:00:00,15.64,25.84,33.51,23.05,8.68,1.07,18.9,37.89,21.14,1.09,12.24,0.09 +2019-07-18 08:00:00,18.59,36.28,37.36,27.42,8.44,1.13,18.11,38.08,19.42,1.23,10.0,0.01 +2019-07-18 09:00:00,20.79,39.22,39.94,27.63,8.99,1.2,16.18,46.53,26.75,1.46,9.41,0.0 +2019-07-18 10:00:00,21.04,37.93,37.29,27.03,9.21,1.22,20.42,44.03,27.05,1.5,15.19,0.37 +2019-07-18 11:00:00,23.42,34.27,33.92,25.69,8.78,1.21,23.68,38.04,22.11,1.75,21.8,0.2 +2019-07-18 12:00:00,22.85,33.01,31.94,23.0,8.85,1.0,30.43,33.26,21.26,1.83,22.34,0.18 +2019-07-18 13:00:00,20.42,37.44,24.46,25.85,8.98,0.93,38.56,23.06,11.73,1.98,20.87,0.21 +2019-07-18 14:00:00,22.46,49.75,28.9,23.69,8.89,0.95,43.98,26.09,10.29,2.18,18.4,0.2 +2019-07-18 15:00:00,24.26,64.91,41.09,25.69,8.71,1.09,46.61,40.77,21.15,2.43,18.32,0.06 +2019-07-18 16:00:00,29.7,85.76,42.29,29.12,8.69,1.08,52.04,37.91,19.39,2.41,19.19,0.09 +2019-07-18 17:00:00,34.82,91.76,39.12,31.31,8.76,1.05,52.29,34.34,13.76,2.47,20.94,0.07 +2019-07-18 18:00:00,35.39,96.83,37.9,29.95,8.07,1.01,49.19,35.37,14.27,2.14,18.89,0.09 +2019-07-18 19:00:00,31.58,99.38,40.87,27.34,8.05,1.18,41.85,39.25,18.02,2.31,16.85,0.08 +2019-07-18 20:00:00,29.85,101.66,50.97,25.32,8.46,1.55,27.6,47.08,21.07,3.32,27.95,0.02 +2019-07-18 21:00:00,34.34,113.61,52.18,24.2,8.65,1.82,21.41,53.8,28.19,3.59,30.09,0.45 +2019-07-18 22:00:00,40.6,130.66,51.85,22.89,8.95,2.19,18.69,62.72,39.36,3.84,35.47,0.65 +2019-07-18 23:00:00,46.43,147.24,54.34,23.75,9.96,2.38,17.71,77.22,54.74,4.86,36.22,0.79 +2019-07-19 00:00:00,48.24,162.95,53.58,25.84,9.69,2.45,18.66,83.53,61.6,4.96,40.41,0.62 +2019-07-19 01:00:00,52.38,161.97,53.78,29.07,8.8,2.06,18.53,88.01,66.72,5.19,38.37,0.86 +2019-07-19 02:00:00,51.4,149.93,49.04,31.45,8.77,1.99,21.84,89.15,70.53,5.17,37.39,0.96 +2019-07-19 03:00:00,53.38,143.71,43.02,33.13,9.68,1.77,18.48,79.22,62.74,4.77,36.81,0.81 +2019-07-19 04:00:00,53.74,135.69,40.81,27.8,8.73,1.74,17.16,78.57,63.44,4.46,37.47,0.93 +2019-07-19 05:00:00,53.6,130.12,39.44,26.07,9.38,1.84,18.65,80.98,67.21,3.84,37.41,0.71 +2019-07-19 06:00:00,55.98,135.72,38.82,24.19,9.71,1.79,22.66,79.03,65.15,3.77,38.79,0.86 +2019-07-19 07:00:00,77.6,153.38,45.7,24.46,9.88,1.61,29.93,77.56,59.37,3.46,39.14,0.81 +2019-07-19 08:00:00,92.42,191.72,55.61,32.92,9.56,1.47,41.89,59.3,30.83,3.51,41.01,0.67 +2019-07-19 09:00:00,101.81,213.95,47.73,35.12,10.38,1.27,43.13,44.54,18.69,3.36,33.21,0.9 +2019-07-19 10:00:00,81.51,172.03,38.78,33.77,12.94,1.1,45.75,35.36,14.23,3.02,24.1,0.81 +2019-07-19 11:00:00,59.56,135.34,33.31,32.77,11.47,1.1,55.47,28.42,9.9,2.44,19.54,0.69 +2019-07-19 12:00:00,52.71,129.81,34.32,32.74,12.65,1.09,66.97,32.93,11.22,2.36,19.91,0.55 +2019-07-19 13:00:00,51.36,131.13,29.94,31.86,10.02,1.0,71.54,25.48,8.48,2.54,16.97,0.42 +2019-07-19 14:00:00,53.93,131.95,30.12,30.51,10.2,0.99,84.32,27.15,9.73,2.43,19.09,0.09 +2019-07-19 15:00:00,56.58,140.24,29.48,31.18,9.44,1.03,90.26,24.51,7.5,2.12,18.11,0.16 +2019-07-19 16:00:00,56.05,147.89,29.56,31.43,9.37,1.0,102.26,23.92,6.49,2.19,19.07,0.21 +2019-07-19 17:00:00,59.43,151.35,30.38,34.21,9.61,0.97,102.92,24.69,6.85,2.37,26.28,0.18 +2019-07-19 18:00:00,61.24,160.79,31.85,34.1,9.46,0.98,92.1,26.0,7.25,2.77,28.44,0.03 +2019-07-19 19:00:00,65.58,171.83,37.54,34.48,9.89,1.06,77.76,29.09,7.62,2.98,35.43,0.01 +2019-07-19 20:00:00,70.15,179.87,46.71,33.2,9.64,1.23,55.5,35.72,9.49,3.16,44.72,0.18 +2019-07-19 21:00:00,68.98,197.9,46.38,31.59,9.57,1.32,38.74,35.49,9.49,3.35,44.91,0.25 +2019-07-19 22:00:00,68.94,196.1,46.76,29.65,10.0,1.42,31.86,37.28,11.3,3.48,38.38,0.55 +2019-07-19 23:00:00,65.87,173.84,46.26,28.27,9.86,1.45,31.29,38.56,13.33,3.43,33.15,0.5 +2019-07-20 00:00:00,64.04,167.32,42.03,28.25,8.93,1.29,32.23,39.1,15.96,2.9,25.55,0.25 +2019-07-20 01:00:00,59.05,162.77,41.88,30.25,8.28,1.13,28.5,36.74,13.44,2.34,20.86,0.25 +2019-07-20 02:00:00,57.48,145.99,38.66,34.17,7.84,1.05,26.31,36.09,14.77,2.01,19.69,0.19 +2019-07-20 03:00:00,54.25,136.47,37.42,34.92,9.01,0.93,20.56,33.81,13.25,1.62,17.97,0.14 +2019-07-20 04:00:00,51.71,126.24,34.25,30.08,7.77,0.98,20.13,31.19,12.5,1.82,18.57,0.11 +2019-07-20 05:00:00,48.47,118.11,32.02,30.76,7.69,0.93,20.83,30.84,13.7,1.75,16.83,0.07 +2019-07-20 06:00:00,46.84,110.27,30.97,27.43,8.09,0.91,20.47,30.46,14.31,1.64,14.84,0.0 +2019-07-20 07:00:00,46.27,109.75,30.46,26.36,8.16,1.01,20.22,32.1,16.59,1.56,15.09,0.24 +2019-07-20 08:00:00,52.94,123.76,31.69,29.62,8.52,1.01,21.56,31.37,14.84,1.5,15.38,0.23 +2019-07-20 09:00:00,52.55,135.72,30.78,31.72,8.93,1.0,23.39,29.07,13.07,1.62,15.34,0.23 +2019-07-20 10:00:00,46.15,136.59,28.49,35.58,8.33,0.94,32.0,24.74,9.46,1.47,12.88,0.25 +2019-07-20 11:00:00,44.08,134.55,26.45,41.37,8.67,0.94,39.1,23.39,8.59,1.43,13.1,0.24 +2019-07-20 12:00:00,43.66,121.16,26.02,37.13,8.79,0.96,44.56,22.76,8.19,1.5,18.82,0.16 +2019-07-20 13:00:00,42.96,117.22,28.77,35.13,8.53,0.89,42.5,24.02,7.46,1.79,28.9,0.18 +2019-07-20 14:00:00,38.11,100.22,34.38,36.42,8.24,0.85,37.63,26.71,7.57,1.95,26.17,0.06 +2019-07-20 15:00:00,26.53,61.53,35.57,33.38,8.76,0.99,36.45,31.57,12.66,1.99,20.75,0.0 +2019-07-20 16:00:00,29.18,58.86,37.61,35.1,8.74,1.08,38.62,32.16,12.58,2.65,28.22,0.02 +2019-07-20 17:00:00,36.32,86.07,41.77,39.86,8.93,1.18,38.56,38.23,17.65,2.88,28.47,0.11 +2019-07-20 18:00:00,38.46,94.07,41.57,38.3,8.56,1.17,28.57,38.72,16.78,3.09,34.0,0.13 +2019-07-20 19:00:00,35.18,89.78,42.43,36.86,8.33,1.22,23.26,35.65,13.19,2.58,34.83,0.37 +2019-07-20 20:00:00,35.55,89.49,46.43,39.56,8.7,1.46,20.67,40.05,15.76,2.97,36.51,0.75 +2019-07-20 21:00:00,43.75,111.68,50.04,35.58,9.4,1.75,22.03,48.23,22.71,4.58,51.34,1.16 +2019-07-20 22:00:00,55.26,135.75,52.29,35.96,9.39,1.98,27.97,52.01,26.55,5.03,54.62,1.44 +2019-07-20 23:00:00,65.46,154.73,48.31,34.71,9.81,1.97,32.18,52.16,28.5,4.65,59.47,1.43 +2019-07-21 00:00:00,68.36,159.95,45.62,35.21,10.32,1.83,39.72,53.65,32.0,4.73,55.22,0.38 +2019-07-21 01:00:00,72.11,161.4,44.56,35.72,10.58,1.68,37.48,52.71,31.41,4.72,52.67,0.49 +2019-07-21 02:00:00,79.33,163.0,42.08,43.94,10.23,1.48,42.0,47.36,27.94,4.56,52.1,0.26 +2019-07-21 03:00:00,79.74,157.0,35.17,39.74,9.61,1.24,34.74,38.59,20.59,3.97,44.4,0.13 +2019-07-21 04:00:00,71.79,138.32,32.74,34.85,7.89,1.12,30.82,32.64,15.45,3.18,35.62,0.1 +2019-07-21 05:00:00,58.07,113.48,29.72,31.47,7.99,1.01,28.47,27.21,11.19,2.49,28.29,0.01 +2019-07-21 06:00:00,48.77,97.54,29.29,30.92,7.78,1.0,20.2,29.28,14.01,2.29,22.54,0.18 +2019-07-21 07:00:00,46.88,92.47,29.85,31.53,8.17,1.05,18.37,32.33,17.11,2.17,20.67,0.25 +2019-07-21 08:00:00,48.42,99.26,29.92,34.35,8.08,1.02,19.91,29.82,14.11,1.9,18.06,0.34 +2019-07-21 09:00:00,48.67,101.08,26.22,35.43,8.11,0.99,23.06,25.63,11.53,1.74,14.86,0.0 +2019-07-21 10:00:00,48.03,102.29,24.21,37.31,7.76,1.12,29.0,21.72,8.29,1.52,12.3,0.05 +2019-07-21 11:00:00,46.1,105.47,21.65,39.48,7.72,1.13,35.42,18.83,6.75,1.38,10.31,0.0 +2019-07-21 12:00:00,46.04,110.54,21.2,41.09,7.99,1.04,42.77,17.93,5.76,1.29,9.63,0.03 +2019-07-21 13:00:00,48.12,112.04,24.59,39.35,8.41,0.9,48.24,20.69,6.55,1.19,11.91,0.08 +2019-07-21 14:00:00,48.89,111.98,21.46,39.43,8.34,0.9,57.57,20.57,7.73,1.18,11.56,0.05 +2019-07-21 15:00:00,52.7,118.49,23.63,37.28,8.82,0.97,50.92,24.21,9.83,1.19,18.26,0.0 +2019-07-21 16:00:00,51.84,113.62,23.43,38.77,7.86,1.03,36.77,29.09,15.31,1.13,19.55,0.0 +2019-07-21 17:00:00,28.36,47.29,31.11,39.87,7.7,1.19,28.47,32.84,14.69,1.08,13.6,0.08 +2019-07-21 18:00:00,20.95,28.86,43.2,38.31,8.03,1.4,18.65,45.18,20.61,1.75,18.42,0.0 +2019-07-21 19:00:00,23.51,40.7,46.72,39.51,9.23,1.52,21.6,54.72,29.99,2.79,37.6,0.21 +2019-07-21 20:00:00,32.18,62.8,48.49,39.49,9.2,1.93,19.11,58.59,36.33,3.39,35.68,0.35 +2019-07-21 21:00:00,42.41,80.3,49.16,36.55,10.08,2.29,25.82,71.54,52.09,4.12,43.2,1.08 +2019-07-21 22:00:00,48.58,97.5,45.88,34.88,10.64,2.61,28.93,82.29,66.45,4.22,38.65,0.86 +2019-07-21 23:00:00,53.73,117.91,43.44,33.95,11.43,2.9,30.98,92.8,79.55,4.38,40.82,0.59 +2019-07-22 00:00:00,60.36,124.13,39.26,35.75,12.91,2.82,34.17,93.22,83.11,4.51,44.52,0.23 +2019-07-22 01:00:00,66.51,130.36,38.12,36.59,10.4,2.67,32.87,99.36,91.1,3.91,43.73,0.39 +2019-07-22 02:00:00,68.13,129.52,36.55,39.04,8.99,2.31,31.64,87.08,76.7,4.12,38.9,0.35 +2019-07-22 03:00:00,66.14,124.87,32.08,41.61,8.72,1.86,33.96,73.77,66.76,3.86,33.77,0.32 +2019-07-22 04:00:00,65.66,122.06,27.55,38.24,8.14,1.52,27.53,58.69,51.31,3.88,31.8,0.75 +2019-07-22 05:00:00,67.13,120.06,27.13,34.7,8.68,1.34,18.2,53.8,45.87,3.6,28.29,0.75 +2019-07-22 06:00:00,65.28,116.51,25.84,34.96,9.53,1.25,19.05,46.65,38.13,3.37,28.84,0.7 +2019-07-22 07:00:00,67.36,120.79,26.82,36.31,8.76,1.38,22.32,46.34,37.62,2.74,24.65,0.42 +2019-07-22 08:00:00,71.64,131.0,29.1,40.21,8.5,1.35,24.41,37.53,26.19,2.26,20.51,0.47 +2019-07-22 09:00:00,72.67,140.81,30.11,41.36,8.33,1.31,27.14,28.92,14.37,2.16,14.74,0.15 +2019-07-22 10:00:00,72.2,133.31,28.99,46.46,8.63,1.2,29.02,26.03,11.3,2.02,11.62,0.15 +2019-07-22 11:00:00,65.52,127.19,26.57,48.86,8.79,1.14,35.22,21.99,8.21,1.75,11.82,0.2 +2019-07-22 12:00:00,55.97,116.93,24.13,47.01,8.42,1.09,47.79,19.87,7.28,1.85,13.59,0.19 +2019-07-22 13:00:00,52.1,111.59,27.02,48.36,8.83,0.96,59.79,24.08,11.62,1.95,16.03,0.03 +2019-07-22 14:00:00,52.28,108.91,25.41,49.72,8.26,1.02,65.21,22.5,7.08,1.63,18.5,0.0 +2019-07-22 15:00:00,56.48,111.71,28.08,50.32,8.35,0.98,63.88,23.18,7.41,1.54,23.42,0.0 +2019-07-22 16:00:00,55.64,114.05,28.44,55.02,7.73,1.0,48.22,25.42,9.82,1.66,26.1,0.05 +2019-07-22 17:00:00,39.65,86.65,29.36,52.69,7.28,1.06,35.85,26.02,9.75,1.75,24.37,0.01 +2019-07-22 18:00:00,34.56,66.68,36.72,47.24,7.91,1.24,35.03,32.16,11.63,2.65,24.32,0.02 +2019-07-22 19:00:00,47.22,96.26,39.23,50.44,8.53,1.32,36.37,32.5,11.29,3.18,38.55,0.31 +2019-07-22 20:00:00,55.12,110.83,41.9,54.7,8.9,1.62,26.53,38.04,15.56,3.57,45.57,0.52 +2019-07-22 21:00:00,59.2,129.37,45.89,41.66,9.66,1.87,29.94,49.39,25.87,4.03,48.81,0.41 +2019-07-22 22:00:00,64.01,141.44,48.47,39.52,10.02,2.26,25.5,59.76,36.23,4.38,41.35,0.64 +2019-07-22 23:00:00,68.19,156.76,50.04,38.5,10.6,2.65,25.38,75.6,53.45,3.49,43.89,0.46 +2019-07-23 00:00:00,70.48,169.16,49.81,37.69,11.67,2.51,29.69,85.35,64.28,3.57,46.87,0.24 +2019-07-23 01:00:00,81.73,185.14,44.45,41.91,10.92,2.18,30.45,79.58,60.3,4.12,46.21,0.49 +2019-07-23 02:00:00,95.25,193.39,41.11,49.5,10.77,1.97,29.41,72.48,57.96,4.65,49.06,0.72 +2019-07-23 03:00:00,92.94,183.86,34.56,45.92,9.69,1.83,33.87,60.5,47.73,3.38,46.25,1.49 +2019-07-23 04:00:00,83.69,161.32,33.46,39.39,9.18,1.67,36.17,56.18,43.51,4.47,47.41,1.62 +2019-07-23 05:00:00,97.28,164.81,31.46,36.24,8.77,1.46,38.91,46.99,33.18,3.69,44.55,1.25 +2019-07-23 06:00:00,104.74,153.84,28.93,34.53,8.91,1.38,44.3,44.96,32.66,2.97,36.46,0.58 +2019-07-23 07:00:00,91.19,154.43,35.52,35.7,9.21,1.42,45.25,55.09,40.98,2.99,35.08,0.32 +2019-07-23 08:00:00,92.47,165.44,36.84,39.01,9.18,1.43,47.13,43.28,24.58,2.36,31.6,0.06 +2019-07-23 09:00:00,99.23,176.56,37.29,40.56,10.09,1.32,39.54,35.96,15.74,2.47,27.22,0.33 +2019-07-23 10:00:00,87.23,158.16,34.36,43.77,8.94,1.22,38.22,35.68,15.56,2.15,21.5,0.11 +2019-07-23 11:00:00,67.78,137.43,29.73,47.15,8.38,1.11,44.79,26.28,8.94,1.86,17.85,0.05 +2019-07-23 12:00:00,57.8,124.57,31.3,48.01,7.81,1.04,53.11,25.67,7.32,1.76,15.97,0.01 +2019-07-23 13:00:00,56.51,118.55,27.3,45.11,8.03,0.99,64.55,23.1,6.89,1.67,18.56,0.0 +2019-07-23 14:00:00,55.48,123.37,28.7,45.51,7.48,1.17,56.28,23.98,7.2,1.91,18.28,0.0 +2019-07-23 15:00:00,56.07,123.67,35.56,51.72,8.17,1.32,52.69,29.61,9.3,2.45,25.22,0.03 +2019-07-23 16:00:00,54.29,121.84,31.53,61.56,8.3,1.2,52.73,27.61,9.68,2.1,24.41,0.62 +2019-07-23 17:00:00,48.26,112.73,26.5,60.84,7.75,1.1,54.84,22.15,7.11,1.68,19.25,0.14 +2019-07-23 18:00:00,44.75,109.69,34.44,54.6,7.65,1.16,45.65,26.7,7.39,1.67,23.16,0.0 +2019-07-23 19:00:00,46.29,117.99,45.04,53.52,8.08,1.38,36.88,33.44,8.5,2.02,23.51,0.0 +2019-07-23 20:00:00,53.22,142.0,58.01,50.51,8.52,1.83,26.98,44.96,13.84,2.55,36.63,0.2 +2019-07-23 21:00:00,61.06,176.61,64.88,43.9,9.11,2.31,21.24,56.48,22.8,3.53,45.15,0.32 +2019-07-23 22:00:00,71.86,197.88,67.39,43.16,10.1,2.76,20.75,68.81,35.82,3.9,43.94,0.86 +2019-07-23 23:00:00,84.23,222.63,69.12,42.45,10.44,2.84,20.44,79.46,45.69,3.76,41.25,0.96 +2019-07-24 00:00:00,86.65,233.45,69.78,43.01,10.23,2.72,21.08,85.24,51.71,3.93,42.16,2.91 +2019-07-24 01:00:00,92.63,242.8,64.89,45.37,9.4,2.27,22.41,73.15,40.69,3.47,43.28,4.92 +2019-07-24 02:00:00,93.79,218.08,58.15,50.56,9.2,2.1,24.38,65.55,36.56,3.6,43.81,5.37 +2019-07-24 03:00:00,92.74,207.74,52.83,45.62,10.4,1.93,24.57,70.54,45.47,3.54,42.26,5.38 +2019-07-24 04:00:00,98.09,217.89,49.9,40.25,9.96,2.14,26.46,70.81,47.78,3.66,41.17,3.26 +2019-07-24 05:00:00,99.95,217.43,47.97,36.36,9.38,2.16,31.72,71.93,50.23,3.75,46.82,0.75 +2019-07-24 06:00:00,105.49,219.1,39.56,35.85,9.51,1.86,24.68,60.46,42.48,3.62,47.18,0.89 +2019-07-24 07:00:00,80.09,170.76,27.62,39.68,8.84,1.06,24.81,31.45,17.13,2.77,30.14,1.18 +2019-07-24 08:00:00,39.47,101.19,35.17,41.91,8.49,1.2,19.01,39.54,21.92,1.54,18.3,1.56 +2019-07-24 09:00:00,48.81,136.68,39.33,40.85,8.62,1.28,23.05,39.91,19.82,1.89,19.03,2.27 +2019-07-24 10:00:00,66.33,166.2,41.33,44.74,8.98,1.4,32.91,35.5,13.03,2.1,21.21,2.54 +2019-07-24 11:00:00,81.33,193.47,40.99,46.66,8.69,1.42,42.63,33.64,10.88,2.15,21.64,2.82 +2019-07-24 12:00:00,80.29,191.32,36.38,51.46,9.11,1.07,53.39,30.46,10.29,2.01,21.84,1.43 +2019-07-24 13:00:00,70.09,167.42,30.28,48.21,9.14,1.12,55.48,26.01,8.8,2.13,22.87,0.12 +2019-07-24 14:00:00,58.8,149.11,28.17,50.89,8.38,1.03,52.22,24.02,8.12,2.17,17.57,0.13 +2019-07-24 15:00:00,53.31,133.87,30.75,54.73,8.7,0.94,48.61,26.33,9.08,1.91,16.88,0.0 +2019-07-24 16:00:00,43.58,124.92,24.8,51.28,8.6,0.85,50.54,21.35,7.03,1.64,16.67,0.0 +2019-07-24 17:00:00,44.29,128.42,27.67,48.15,8.53,0.99,49.11,23.17,7.14,1.38,25.81,0.0 +2019-07-24 18:00:00,54.05,161.1,31.8,45.55,8.06,1.03,38.88,26.49,8.26,1.49,20.54,0.09 +2019-07-24 19:00:00,40.34,136.84,32.09,45.94,7.55,0.95,33.31,29.44,12.1,1.47,16.8,0.1 +2019-07-24 20:00:00,23.66,65.59,36.92,43.58,7.68,1.09,26.53,32.88,12.95,1.54,19.89,0.12 +2019-07-24 21:00:00,21.54,60.37,39.53,39.63,8.04,1.18,23.88,37.23,16.59,2.01,20.35,0.26 +2019-07-24 22:00:00,20.94,59.68,39.69,37.46,8.41,1.13,22.21,37.43,16.55,1.67,17.48,0.47 +2019-07-24 23:00:00,21.9,62.97,41.43,36.91,8.1,1.0,22.61,36.57,14.57,1.28,15.79,0.35 +2019-07-25 00:00:00,20.75,60.39,37.47,35.49,7.8,0.91,22.93,33.61,13.49,1.15,15.61,0.04 +2019-07-25 01:00:00,19.32,56.82,34.67,38.21,7.67,0.79,22.32,30.82,11.77,0.84,10.03,0.02 +2019-07-25 02:00:00,17.41,47.02,28.92,41.9,7.75,0.73,24.04,27.5,11.74,0.85,9.44,0.0 +2019-07-25 03:00:00,15.47,39.73,27.32,40.35,9.21,0.7,22.34,28.17,14.06,0.85,9.1,0.0 +2019-07-25 04:00:00,15.62,36.76,26.67,34.99,7.97,0.7,21.7,25.16,10.8,0.83,8.51,0.14 +2019-07-25 05:00:00,14.1,35.74,26.79,34.47,8.29,0.69,21.82,24.34,9.49,0.82,8.27,0.09 +2019-07-25 06:00:00,15.75,36.61,28.53,33.71,8.6,0.71,19.39,25.71,10.02,0.95,8.58,0.08 +2019-07-25 07:00:00,18.78,45.73,30.05,32.05,8.38,0.78,19.37,28.9,12.92,1.16,10.14,0.09 +2019-07-25 08:00:00,22.61,56.65,31.93,31.48,8.41,0.9,17.96,32.97,16.64,0.78,10.08,0.22 +2019-07-25 09:00:00,24.29,76.63,31.27,34.01,8.68,0.93,20.25,35.95,20.37,1.27,10.7,0.32 +2019-07-25 10:00:00,24.29,83.29,27.35,35.44,8.83,0.9,22.93,30.61,17.8,1.3,10.5,0.15 +2019-07-25 11:00:00,26.18,85.22,29.29,38.32,9.34,0.9,25.96,31.9,17.01,1.51,15.14,0.2 +2019-07-25 12:00:00,30.78,91.93,34.04,37.21,9.39,0.92,25.35,37.32,21.12,1.8,14.92,0.04 +2019-07-25 13:00:00,32.69,96.95,33.6,38.69,9.11,0.93,25.17,32.81,19.69,1.99,20.1,0.03 +2019-07-25 14:00:00,33.17,79.31,35.21,33.68,8.9,0.92,25.39,34.02,17.57,2.32,19.01,0.06 +2019-07-25 15:00:00,24.68,64.56,37.08,33.39,8.93,0.91,24.54,36.8,18.94,2.29,18.36,0.05 +2019-07-25 16:00:00,19.07,56.52,30.61,36.43,8.79,0.9,24.74,31.68,18.13,1.82,15.52,0.01 +2019-07-25 17:00:00,16.39,45.7,30.8,38.94,8.88,0.91,24.76,32.14,18.08,1.5,15.39,0.18 +2019-07-25 18:00:00,15.26,47.93,33.05,39.55,8.67,0.94,24.15,33.97,17.41,1.65,21.86,0.21 +2019-07-25 19:00:00,17.93,58.2,36.14,41.54,9.05,0.97,22.31,33.77,14.89,2.26,31.6,0.24 +2019-07-25 20:00:00,23.71,68.46,39.08,42.5,9.18,1.14,21.81,36.58,16.59,2.64,30.9,0.28 +2019-07-25 21:00:00,28.1,78.71,42.3,39.11,9.46,1.34,24.49,43.88,22.58,2.97,31.94,0.48 +2019-07-25 22:00:00,31.2,85.35,47.62,40.29,9.55,1.46,21.1,48.03,24.61,3.52,32.69,0.64 +2019-07-25 23:00:00,39.3,89.97,44.59,40.44,9.33,1.46,21.8,48.58,27.05,3.41,30.11,0.83 +2019-07-26 00:00:00,41.32,92.16,43.08,39.04,9.22,1.38,23.35,48.72,27.84,2.88,27.14,0.36 +2019-07-26 01:00:00,43.28,90.77,41.43,38.2,9.19,1.13,17.77,43.17,22.28,2.42,24.98,0.46 +2019-07-26 02:00:00,41.42,84.46,39.32,43.94,9.03,1.03,18.59,39.31,19.29,2.07,23.8,1.0 +2019-07-26 03:00:00,40.8,81.91,38.75,43.76,10.37,0.89,17.59,36.43,16.37,2.0,24.24,1.0 +2019-07-26 04:00:00,40.84,81.57,36.55,38.72,9.54,0.86,19.72,34.76,15.73,1.91,24.99,1.43 +2019-07-26 05:00:00,41.26,79.74,36.38,37.32,9.78,0.84,24.32,35.39,16.37,2.13,23.14,1.15 +2019-07-26 06:00:00,44.4,81.95,34.73,35.46,9.27,0.8,30.95,33.27,14.87,2.0,22.58,0.69 +2019-07-26 07:00:00,39.82,70.17,32.17,35.57,8.82,0.83,24.02,30.82,13.87,1.66,19.57,0.28 +2019-07-26 08:00:00,35.25,61.26,31.89,36.28,8.69,0.9,21.66,30.39,13.85,1.57,15.08,0.25 +2019-07-26 09:00:00,30.37,59.72,32.91,37.58,8.68,0.99,22.53,31.06,13.95,1.61,12.33,0.18 +2019-07-26 10:00:00,27.92,64.97,32.6,41.24,8.73,1.0,22.12,30.38,13.48,1.5,11.95,0.27 +2019-07-26 11:00:00,31.49,70.68,30.66,38.32,8.78,0.9,30.4,27.6,11.29,1.6,11.87,0.18 +2019-07-26 12:00:00,34.48,77.35,25.67,36.16,8.81,0.92,36.52,22.35,7.8,1.73,17.72,0.43 +2019-07-26 13:00:00,31.16,70.45,23.44,34.15,8.92,0.89,39.94,19.86,7.06,1.67,13.53,0.26 +2019-07-26 14:00:00,27.44,68.74,24.14,33.31,9.19,0.87,38.76,20.37,7.26,1.72,13.9,0.25 +2019-07-26 15:00:00,26.35,55.51,25.26,33.39,8.8,0.9,33.23,23.79,10.06,1.57,17.96,0.04 +2019-07-26 16:00:00,15.48,24.41,28.11,32.98,9.34,0.96,30.21,27.87,12.74,1.54,23.19,0.1 +2019-07-26 17:00:00,15.58,26.73,28.65,33.33,9.08,0.99,26.84,25.72,10.21,1.99,20.58,0.04 +2019-07-26 18:00:00,17.19,39.13,27.64,36.67,8.66,1.03,36.42,24.41,8.88,3.15,29.92,0.1 +2019-07-26 19:00:00,20.85,41.04,27.61,34.19,8.11,1.08,37.77,25.7,10.73,2.93,36.86,0.01 +2019-07-26 20:00:00,20.18,37.67,29.02,32.35,8.19,1.17,33.12,26.81,11.59,2.9,40.99,0.4 +2019-07-26 21:00:00,23.28,37.92,29.24,31.41,8.26,1.16,23.79,26.18,10.31,2.77,37.62,0.4 +2019-07-26 22:00:00,21.32,33.7,30.34,31.66,8.37,1.23,28.44,28.35,12.24,2.66,29.07,0.43 +2019-07-26 23:00:00,23.72,38.21,29.01,30.53,8.14,1.11,27.21,25.98,10.24,2.37,22.85,0.23 +2019-07-27 00:00:00,25.15,35.21,27.0,30.61,8.2,1.03,24.25,25.09,10.47,1.89,19.04,0.09 +2019-07-27 01:00:00,24.97,37.79,24.19,32.27,8.07,0.85,23.59,22.46,9.26,1.64,18.2,0.19 +2019-07-27 02:00:00,21.33,34.31,21.72,38.29,8.03,0.79,34.89,19.79,7.51,1.37,16.15,0.12 +2019-07-27 03:00:00,20.58,31.38,20.26,37.66,9.2,0.78,26.23,20.18,9.13,1.21,15.19,0.08 +2019-07-27 04:00:00,22.96,33.76,19.6,31.53,8.51,0.77,20.15,19.46,8.51,1.26,14.56,0.19 +2019-07-27 05:00:00,25.07,40.62,19.39,28.72,8.36,0.77,20.6,19.51,8.86,1.1,15.58,0.23 +2019-07-27 06:00:00,26.29,45.17,19.69,27.08,8.39,0.78,21.06,19.3,8.26,1.06,13.79,0.11 +2019-07-27 07:00:00,23.84,38.84,21.71,27.22,8.52,0.83,25.91,21.19,9.01,0.95,12.52,0.38 +2019-07-27 08:00:00,26.4,43.81,21.4,28.49,8.64,0.89,25.18,20.37,8.57,0.95,10.19,0.03 +2019-07-27 09:00:00,26.91,43.48,21.71,29.39,8.39,0.91,24.28,20.34,8.33,0.95,9.82,0.19 +2019-07-27 10:00:00,28.27,51.44,21.52,32.31,8.24,0.94,33.19,20.18,8.4,1.06,10.52,0.11 +2019-07-27 11:00:00,27.85,52.49,20.94,29.92,8.62,0.94,38.97,19.69,8.03,1.28,11.28,0.13 +2019-07-27 12:00:00,25.63,53.16,20.65,31.42,8.48,0.87,41.66,19.33,7.83,1.54,16.17,0.07 +2019-07-27 13:00:00,25.87,56.67,21.36,29.99,8.06,0.81,40.56,19.69,7.59,1.47,11.2,0.02 +2019-07-27 14:00:00,23.95,49.57,22.71,27.47,7.91,0.82,34.47,22.11,9.46,1.65,13.54,0.02 +2019-07-27 15:00:00,18.97,34.2,23.67,29.1,8.16,0.9,38.66,23.33,9.92,1.92,16.94,0.48 +2019-07-27 16:00:00,22.67,42.55,24.95,27.81,7.82,0.92,32.18,22.23,8.81,1.59,18.01,0.84 +2019-07-27 17:00:00,19.53,33.31,29.11,28.24,7.94,1.05,28.99,28.16,12.75,2.07,17.99,1.58 +2019-07-27 18:00:00,16.4,25.45,33.87,30.14,8.78,1.2,28.74,34.42,16.42,2.86,26.63,1.91 +2019-07-27 19:00:00,20.93,35.9,37.16,30.42,10.16,1.31,32.87,38.41,19.65,3.63,32.2,1.73 +2019-07-27 20:00:00,32.68,50.8,37.2,30.03,9.64,1.55,25.54,42.84,25.16,3.83,50.52,1.58 +2019-07-27 21:00:00,36.81,67.21,35.49,30.13,10.06,1.65,26.48,44.9,29.06,4.54,54.79,3.05 +2019-07-27 22:00:00,43.69,75.13,32.88,29.01,10.09,1.53,28.91,38.66,22.98,4.42,45.38,2.51 +2019-07-27 23:00:00,41.2,68.83,29.94,29.09,9.81,1.21,31.62,29.47,13.56,3.69,32.39,2.15 +2019-07-28 00:00:00,35.58,59.49,28.18,28.17,8.71,1.02,27.54,27.64,12.05,2.53,23.22,0.59 +2019-07-28 01:00:00,33.31,58.93,26.72,27.74,8.72,0.91,27.36,26.58,11.98,2.23,20.79,0.6 +2019-07-28 02:00:00,28.8,52.89,22.33,31.22,8.1,0.8,35.58,20.79,8.13,1.73,18.21,0.23 +2019-07-28 03:00:00,20.48,38.18,20.47,31.28,8.65,0.72,31.05,20.44,9.23,1.34,16.57,0.22 +2019-07-28 04:00:00,15.88,31.52,20.11,27.99,8.01,0.71,28.32,19.79,8.75,1.32,15.29,0.61 +2019-07-28 05:00:00,16.4,31.96,20.32,26.36,7.74,0.71,21.28,19.77,8.21,1.33,15.72,0.22 +2019-07-28 06:00:00,16.91,33.16,20.12,25.42,8.05,0.76,24.03,19.84,8.6,1.19,15.18,0.55 +2019-07-28 07:00:00,19.27,36.87,18.54,26.26,8.28,0.74,26.14,19.28,8.84,1.19,14.77,0.39 +2019-07-28 08:00:00,20.83,38.45,18.43,27.12,8.36,0.79,27.7,18.79,8.48,1.04,11.81,0.41 +2019-07-28 09:00:00,22.06,41.22,17.25,27.61,8.52,0.82,27.79,17.7,8.12,0.99,10.93,0.06 +2019-07-28 10:00:00,21.47,38.97,17.7,27.42,8.56,0.84,36.13,17.68,7.83,1.02,10.89,0.03 +2019-07-28 11:00:00,22.26,42.4,18.07,29.31,8.59,0.87,36.15,17.56,7.56,1.05,10.74,0.05 +2019-07-28 12:00:00,23.87,49.76,17.8,30.59,8.11,0.86,34.09,17.44,7.43,1.01,10.41,0.35 +2019-07-28 13:00:00,21.91,48.7,18.39,28.25,8.27,0.83,35.91,17.7,7.41,1.03,10.23,0.21 +2019-07-28 14:00:00,18.82,45.72,18.95,27.89,8.52,0.83,41.41,18.04,7.34,0.94,10.01,0.24 +2019-07-28 15:00:00,20.29,46.28,18.87,27.95,8.96,0.84,37.81,17.77,7.11,0.94,10.04,0.23 +2019-07-28 16:00:00,19.65,48.98,19.94,27.49,8.62,0.89,32.17,18.89,7.72,0.98,10.77,0.23 +2019-07-28 17:00:00,17.49,46.98,20.67,28.43,8.56,0.97,28.73,20.06,8.43,0.93,12.19,0.21 +2019-07-28 18:00:00,13.97,41.9,18.09,30.91,7.74,0.95,32.82,17.48,7.12,0.91,10.26,0.12 +2019-07-28 19:00:00,12.51,39.06,21.38,32.94,7.62,0.82,31.53,19.16,7.13,0.91,9.87,0.17 +2019-07-28 20:00:00,13.32,42.2,26.35,32.06,8.06,0.96,29.72,22.4,7.7,1.15,11.28,0.33 +2019-07-28 21:00:00,17.69,50.7,30.92,29.01,8.44,1.13,25.01,27.88,11.56,1.49,15.67,0.55 +2019-07-28 22:00:00,24.41,68.75,32.87,28.73,9.33,1.28,27.93,32.79,15.68,1.84,17.95,0.69 +2019-07-28 23:00:00,29.87,79.21,32.99,27.48,9.79,1.34,28.57,33.88,16.51,2.03,18.43,1.04 +2019-07-29 00:00:00,32.94,88.74,30.99,27.88,9.95,1.21,19.22,30.8,14.08,1.91,21.9,0.96 +2019-07-29 01:00:00,35.62,81.65,28.15,27.4,9.05,0.92,21.1,26.82,11.5,1.7,19.12,0.83 +2019-07-29 02:00:00,30.93,70.36,22.91,31.36,8.43,0.79,26.6,22.49,9.94,1.52,18.85,0.84 +2019-07-29 03:00:00,28.28,57.66,19.22,32.69,9.33,0.78,21.36,19.31,8.92,1.24,16.07,0.78 +2019-07-29 04:00:00,24.0,46.96,18.99,28.83,8.1,0.76,23.84,18.59,8.09,1.19,14.84,0.79 +2019-07-29 05:00:00,20.15,41.2,19.18,26.11,8.52,0.69,22.67,18.64,7.92,1.04,12.75,0.7 +2019-07-29 06:00:00,20.57,39.19,19.23,27.13,8.89,0.71,21.62,19.01,8.33,1.02,11.97,0.73 +2019-07-29 07:00:00,20.26,41.14,20.25,27.51,9.65,0.8,27.91,21.02,9.98,1.02,10.56,0.68 +2019-07-29 08:00:00,19.9,50.12,20.38,27.6,9.83,0.88,27.58,22.26,11.57,1.03,10.79,0.68 +2019-07-29 09:00:00,20.37,56.42,24.92,28.86,9.39,0.9,28.5,26.33,14.43,1.07,9.82,0.68 +2019-07-29 10:00:00,19.95,54.92,26.17,32.64,9.38,0.95,33.42,27.17,14.35,0.98,9.22,0.74 +2019-07-29 11:00:00,21.7,59.23,23.2,32.5,9.37,0.85,36.69,19.63,8.43,1.07,9.37,0.72 +2019-07-29 12:00:00,25.98,63.53,21.71,33.05,8.48,0.87,39.07,19.98,8.42,1.2,12.23,0.72 +2019-07-29 13:00:00,24.66,65.68,25.5,31.18,8.28,0.86,37.2,24.01,10.09,1.42,14.66,0.73 +2019-07-29 14:00:00,22.2,63.29,23.98,32.7,8.58,0.89,37.51,23.1,9.83,1.29,14.05,0.71 +2019-07-29 15:00:00,21.19,59.12,22.69,31.98,8.69,0.88,35.72,22.64,9.6,1.32,14.55,0.71 +2019-07-29 16:00:00,19.79,56.31,21.56,33.54,8.85,0.81,41.73,22.44,9.75,1.6,14.95,0.68 +2019-07-29 17:00:00,19.52,56.62,24.29,37.4,9.28,0.83,40.25,22.6,11.2,1.41,18.29,0.85 +2019-07-29 18:00:00,19.03,60.53,23.53,36.78,8.43,0.84,39.8,23.52,10.06,1.91,17.12,0.68 +2019-07-29 19:00:00,21.68,66.98,28.71,34.78,8.2,0.95,33.56,26.72,10.42,1.47,16.79,0.68 +2019-07-29 20:00:00,22.9,77.09,33.03,33.27,8.51,1.1,29.44,29.36,11.03,2.07,21.24,0.82 +2019-07-29 21:00:00,25.45,87.27,34.7,32.55,9.11,1.3,24.04,32.91,14.35,2.51,25.67,0.74 +2019-07-29 22:00:00,33.53,99.31,35.21,31.84,9.37,1.33,21.96,32.54,13.55,2.73,26.15,0.73 +2019-07-29 23:00:00,36.18,96.74,34.14,30.81,9.57,1.26,24.02,31.53,13.24,2.73,20.59,0.73 +2019-07-30 00:00:00,37.24,98.69,32.73,31.02,9.96,1.2,25.88,30.25,12.53,2.46,17.96,0.85 +2019-07-30 01:00:00,37.48,93.89,29.73,30.63,10.1,1.01,17.74,28.05,11.72,2.09,18.06,0.91 +2019-07-30 02:00:00,36.49,82.01,27.31,34.19,9.8,0.9,22.3,24.99,9.88,1.94,17.81,0.9 +2019-07-30 03:00:00,33.02,74.7,24.91,35.06,11.2,0.83,20.48,22.76,9.01,1.73,16.36,0.83 +2019-07-30 04:00:00,35.79,73.25,22.97,29.95,9.28,0.83,22.98,21.46,8.64,1.74,17.19,0.78 +2019-07-30 05:00:00,36.27,70.45,23.2,28.78,8.69,0.8,21.51,22.62,9.82,1.68,17.73,0.77 +2019-07-30 06:00:00,36.07,71.02,23.41,29.22,9.08,0.89,20.13,23.37,10.56,1.66,17.95,0.85 +2019-07-30 07:00:00,34.46,94.95,23.23,28.98,8.69,0.96,28.15,24.76,12.33,1.53,14.9,0.89 +2019-07-30 08:00:00,29.51,70.83,24.35,29.81,9.19,1.01,20.18,25.8,13.0,1.47,12.36,0.94 +2019-07-30 09:00:00,25.24,69.81,23.8,31.68,8.93,1.0,22.4,24.52,12.45,1.34,11.49,0.84 +2019-07-30 10:00:00,23.01,70.46,23.81,32.59,8.95,0.96,27.21,24.05,11.11,1.34,12.47,0.72 +2019-07-30 11:00:00,23.71,77.94,24.74,32.27,9.86,0.89,29.27,23.94,10.52,1.69,14.57,0.71 +2019-07-30 12:00:00,25.23,82.24,24.74,33.02,9.55,0.87,27.26,24.16,10.22,1.9,15.84,0.69 +2019-07-30 13:00:00,24.48,87.9,24.8,33.98,9.31,0.81,33.29,23.1,8.99,2.06,20.8,0.68 +2019-07-30 14:00:00,23.2,72.86,23.39,36.11,8.81,0.82,38.05,21.19,7.86,2.13,16.19,0.68 +2019-07-30 15:00:00,22.19,68.21,22.95,35.0,8.95,0.85,38.4,20.52,7.73,1.87,20.26,0.72 +2019-07-30 16:00:00,24.67,74.24,23.14,36.47,10.15,0.86,37.64,20.67,7.43,1.73,21.68,0.68 +2019-07-30 17:00:00,26.5,75.28,23.55,37.66,9.43,0.8,35.62,20.85,7.57,1.67,19.74,0.71 +2019-07-30 18:00:00,26.71,75.65,26.29,39.7,8.63,0.91,33.03,23.36,8.31,1.94,22.02,0.7 +2019-07-30 19:00:00,26.89,78.63,31.99,37.64,8.77,1.07,33.02,28.56,10.51,2.21,24.99,0.73 +2019-07-30 20:00:00,29.72,98.6,35.52,34.86,9.31,1.21,25.51,31.35,11.68,2.54,34.57,0.75 +2019-07-30 21:00:00,32.9,109.41,38.8,35.35,9.1,1.31,23.41,33.86,12.83,2.96,38.46,0.96 +2019-07-30 22:00:00,36.02,114.5,36.1,36.09,9.14,1.31,29.04,32.87,13.51,3.09,32.27,0.91 +2019-07-30 23:00:00,35.52,102.03,30.52,33.66,9.68,1.12,25.48,27.49,10.72,3.39,29.13,1.02 +2019-07-31 00:00:00,34.38,88.36,27.35,35.08,9.04,0.96,24.76,24.21,9.02,2.26,24.67,0.83 +2019-07-31 01:00:00,31.98,75.57,23.52,34.12,8.4,0.77,24.59,21.6,8.36,1.69,17.98,0.83 +2019-07-31 02:00:00,28.71,62.48,21.49,38.57,8.41,0.75,24.81,19.48,7.26,1.47,14.8,0.72 +2019-07-31 03:00:00,28.5,60.71,19.83,35.58,9.73,0.76,28.81,18.31,6.99,1.31,14.69,0.82 +2019-07-31 04:00:00,26.34,57.33,18.71,31.77,8.6,0.73,24.88,17.3,6.76,1.18,12.81,0.75 +2019-07-31 05:00:00,23.16,51.14,19.07,29.2,8.52,0.72,29.91,18.0,7.25,1.13,11.97,0.81 +2019-07-31 06:00:00,23.97,50.45,19.45,29.57,8.78,0.75,30.31,18.99,8.13,1.08,12.06,0.74 +2019-07-31 07:00:00,24.14,50.14,25.65,29.07,8.62,0.82,22.09,21.85,13.9,1.08,11.56,0.71 +2019-07-31 08:00:00,24.88,54.49,31.17,29.43,8.48,0.98,20.92,30.97,16.55,1.14,12.62,0.8 +2019-07-31 09:00:00,29.88,68.32,31.87,32.31,8.46,0.99,22.41,34.46,16.99,1.34,13.25,0.79 +2019-07-31 10:00:00,31.82,83.18,25.55,32.83,8.88,1.04,29.45,24.58,11.06,1.46,14.61,0.69 +2019-07-31 11:00:00,33.2,88.43,25.02,33.71,9.1,1.0,33.51,23.22,9.4,1.46,13.76,0.68 +2019-07-31 12:00:00,35.89,85.69,23.01,35.2,9.06,0.9,37.59,21.04,8.03,1.87,18.01,0.11 +2019-07-31 13:00:00,33.3,82.55,22.29,35.14,9.06,0.83,41.61,20.19,8.26,1.58,14.43,0.02 +2019-07-31 14:00:00,29.75,75.35,23.76,34.75,8.81,0.86,43.23,22.92,8.94,1.51,13.78,0.37 +2019-07-31 15:00:00,30.53,79.08,23.42,35.63,8.92,0.92,45.03,24.34,9.82,1.43,13.28,0.2 +2019-07-31 16:00:00,29.2,84.05,22.51,36.85,8.94,0.88,50.97,24.05,10.28,1.29,15.66,0.27 +2019-07-31 17:00:00,31.59,78.69,24.93,38.58,8.6,0.87,48.5,25.44,9.77,1.33,20.62,0.38 +2019-07-31 18:00:00,31.93,80.6,26.6,37.65,8.13,0.89,42.02,25.31,9.23,1.44,25.28,0.19 +2019-07-31 19:00:00,31.12,84.84,33.11,33.7,8.22,0.99,33.36,28.51,8.86,1.59,27.35,0.28 +2019-07-31 20:00:00,29.37,88.27,35.38,33.68,8.62,1.11,25.16,32.24,11.87,1.9,32.62,0.24 +2019-07-31 21:00:00,31.58,103.95,37.75,33.28,9.2,1.24,22.66,33.34,11.55,2.51,34.57,0.32 +2019-07-31 22:00:00,34.18,104.7,37.27,32.33,9.06,1.29,22.1,34.86,13.6,3.13,31.97,0.57 +2019-07-31 23:00:00,35.81,101.63,36.2,33.0,9.01,1.25,21.38,34.39,13.73,3.37,26.68,0.61 +2019-08-01 00:00:00,38.61,104.7,35.4,32.63,8.97,1.16,21.64,33.39,13.03,2.96,23.59,0.57 +2019-08-01 01:00:00,39.53,99.22,33.34,32.2,8.91,0.96,20.91,30.88,11.64,2.44,19.31,0.5 +2019-08-01 02:00:00,39.15,85.72,30.51,37.07,8.69,0.92,34.2,29.22,11.34,2.03,17.35,0.39 +2019-08-01 03:00:00,39.28,79.66,26.41,34.51,10.22,0.87,24.45,24.86,8.93,1.71,15.29,0.58 +2019-08-01 04:00:00,37.22,75.31,26.07,30.19,8.83,0.89,21.48,24.71,9.09,1.6,14.29,0.27 +2019-08-01 05:00:00,36.75,72.19,26.55,30.17,8.68,0.84,24.96,26.39,10.78,1.56,14.22,0.42 +2019-08-01 06:00:00,36.23,76.33,27.39,28.81,8.75,0.87,22.4,26.67,10.84,1.59,14.89,0.23 +2019-08-01 07:00:00,37.66,79.36,29.03,29.33,8.63,0.96,22.98,29.54,13.21,1.68,16.48,0.19 +2019-08-01 08:00:00,41.11,89.71,29.56,31.75,8.4,0.99,23.36,30.08,13.41,1.69,16.34,0.21 +2019-08-01 09:00:00,41.71,100.9,26.15,33.07,8.65,0.95,25.94,26.77,11.87,1.61,14.03,0.24 +2019-08-01 10:00:00,38.54,103.55,23.93,35.08,8.74,0.93,33.42,23.72,9.62,1.46,11.0,0.54 +2019-08-01 11:00:00,37.19,92.77,22.63,33.74,8.41,0.93,40.25,21.84,8.41,1.54,10.72,0.5 +2019-08-01 12:00:00,36.03,89.45,23.56,33.53,8.51,0.87,45.53,22.09,7.96,1.46,10.42,0.27 +2019-08-01 13:00:00,32.84,91.49,23.72,34.95,8.26,0.91,50.94,22.2,8.4,1.52,10.71,0.21 +2019-08-01 14:00:00,28.67,79.67,23.64,33.12,7.9,0.9,54.11,22.17,8.2,1.45,10.14,0.07 +2019-08-01 15:00:00,29.23,80.44,23.19,35.9,8.0,0.8,50.2,21.29,7.76,1.45,12.78,0.11 +2019-08-01 16:00:00,31.38,81.8,24.95,36.66,7.93,0.85,45.89,22.88,8.3,1.77,18.04,0.3 +2019-08-01 17:00:00,26.24,73.22,24.48,39.28,8.99,0.78,44.83,22.62,8.33,1.99,18.32,0.39 +2019-08-01 18:00:00,23.34,70.93,26.14,39.46,8.94,0.8,39.86,23.3,8.02,1.91,20.88,0.38 +2019-08-01 19:00:00,22.44,69.91,31.62,34.75,9.2,0.87,35.22,26.64,8.48,2.01,29.27,0.34 +2019-08-01 20:00:00,26.68,80.23,33.34,33.52,9.91,0.99,28.61,27.92,8.98,2.13,30.8,0.5 +2019-08-01 21:00:00,33.9,93.56,36.34,33.5,9.41,1.09,26.43,30.49,9.82,2.53,32.91,1.02 +2019-08-01 22:00:00,34.96,97.16,38.14,31.49,9.29,1.17,22.8,34.24,12.85,2.73,23.37,0.6 +2019-08-01 23:00:00,33.57,94.08,35.46,30.39,8.67,1.23,19.88,32.29,12.36,2.34,20.59,0.55 +2019-08-02 00:00:00,32.35,87.2,34.5,31.31,8.34,1.02,22.44,32.52,13.17,1.97,18.23,0.56 +2019-08-02 01:00:00,30.0,81.81,33.16,31.72,8.47,0.9,23.33,31.56,12.89,1.86,17.98,0.23 +2019-08-02 02:00:00,32.62,76.9,29.62,36.11,8.54,0.84,22.83,26.79,10.01,1.55,16.99,0.38 +2019-08-02 03:00:00,33.6,69.0,26.3,33.27,9.38,0.84,19.49,24.41,9.69,1.37,15.56,0.33 +2019-08-02 04:00:00,33.62,66.46,25.81,29.25,8.76,0.8,20.08,24.11,9.49,1.34,14.84,0.31 +2019-08-02 05:00:00,34.39,66.64,25.33,28.62,8.37,0.78,18.44,23.73,9.36,1.37,14.56,0.49 +2019-08-02 06:00:00,35.75,65.3,26.03,27.13,7.86,0.83,18.85,24.71,10.23,1.35,13.4,0.25 +2019-08-02 07:00:00,37.08,69.66,28.85,27.03,7.82,0.91,18.5,28.36,12.56,1.37,12.91,0.11 +2019-08-02 08:00:00,40.65,81.62,30.39,29.05,7.75,1.26,16.44,29.98,13.44,1.45,13.23,0.08 +2019-08-02 09:00:00,42.33,97.62,29.52,31.73,7.97,1.08,20.8,28.64,12.47,1.49,12.59,0.35 +2019-08-02 10:00:00,41.66,115.67,27.73,34.12,7.74,1.0,29.04,27.33,11.77,1.41,11.73,0.24 +2019-08-02 11:00:00,39.47,99.01,25.31,35.37,7.87,1.0,35.58,25.01,10.66,1.44,10.88,0.24 +2019-08-02 12:00:00,43.62,105.26,25.78,33.74,8.02,0.94,41.34,24.15,9.1,1.5,17.43,0.29 +2019-08-02 13:00:00,46.35,107.92,29.91,33.57,9.14,0.95,50.77,25.5,8.15,2.05,20.74,0.46 +2019-08-02 14:00:00,38.24,93.51,28.12,32.8,9.05,0.91,38.82,23.25,7.76,2.16,18.96,0.47 +2019-08-02 15:00:00,23.32,60.79,32.62,33.4,8.13,1.03,33.36,29.92,12.53,1.98,33.62,0.47 +2019-08-02 16:00:00,21.51,52.61,32.3,35.57,8.37,1.02,31.57,30.1,11.92,2.72,42.1,0.58 +2019-08-02 17:00:00,23.21,60.11,30.58,35.75,7.84,0.94,35.85,28.78,11.03,2.55,34.49,0.33 +2019-08-02 18:00:00,26.97,72.98,30.76,37.32,8.62,1.0,45.89,27.86,10.05,2.61,36.16,0.03 +2019-08-02 19:00:00,39.91,86.67,34.23,35.93,8.41,1.09,41.24,30.91,11.35,2.79,35.93,0.07 +2019-08-02 20:00:00,34.54,88.28,38.7,32.73,8.79,1.18,33.48,34.05,12.37,3.28,43.09,0.21 +2019-08-02 21:00:00,35.27,103.47,39.21,33.19,8.7,1.41,25.85,36.02,14.59,3.85,53.94,0.2 +2019-08-02 22:00:00,36.88,99.02,39.81,32.98,9.31,1.51,29.08,40.24,18.89,4.22,45.8,0.51 +2019-08-02 23:00:00,37.98,100.26,38.43,32.12,9.63,1.41,29.85,41.52,21.09,3.67,42.44,0.54 +2019-08-03 00:00:00,42.67,106.34,35.89,32.77,9.55,1.25,18.1,37.9,18.63,3.18,37.4,0.59 +2019-08-03 01:00:00,43.64,92.6,31.87,32.31,8.89,0.99,24.63,35.72,20.02,2.6,30.02,0.45 +2019-08-03 02:00:00,41.98,82.55,30.72,37.34,9.92,0.88,32.12,33.92,18.18,2.41,25.65,0.09 +2019-08-03 03:00:00,39.97,76.81,29.29,36.7,12.9,0.84,30.23,34.16,19.62,2.46,24.05,0.11 +2019-08-03 04:00:00,40.56,81.19,28.96,32.1,12.17,0.87,17.56,33.55,18.62,2.44,23.66,0.09 +2019-08-03 05:00:00,40.33,81.1,29.24,31.21,9.68,0.87,31.87,33.66,18.11,2.21,22.76,0.06 +2019-08-03 06:00:00,37.41,74.92,27.9,31.19,9.49,0.92,27.85,31.66,16.73,2.02,26.07,0.25 +2019-08-03 07:00:00,37.32,75.4,28.27,30.66,10.63,1.02,26.76,35.71,21.46,2.07,23.98,0.56 +2019-08-03 08:00:00,44.29,91.59,28.8,32.48,10.0,1.05,21.57,34.28,19.39,2.25,23.72,0.44 +2019-08-03 09:00:00,49.66,110.67,28.0,33.47,9.31,1.03,27.99,31.05,16.08,2.22,21.68,0.48 +2019-08-03 10:00:00,44.8,89.0,24.5,35.45,8.83,1.02,25.56,26.98,13.27,1.81,17.86,0.2 +2019-08-03 11:00:00,42.63,81.31,24.63,36.08,8.11,1.03,27.88,28.08,14.56,1.43,17.21,0.02 +2019-08-03 12:00:00,38.6,72.17,29.0,36.44,8.07,1.14,26.01,31.0,15.47,1.59,23.75,0.07 +2019-08-03 13:00:00,33.19,67.54,31.78,36.7,8.28,1.14,28.07,33.58,16.58,2.31,39.43,0.24 +2019-08-03 14:00:00,41.13,78.13,30.18,37.23,8.27,1.06,37.77,28.39,11.64,2.93,39.4,0.62 +2019-08-03 15:00:00,38.59,78.19,27.06,36.27,8.11,0.98,41.12,25.58,10.74,2.79,29.49,0.42 +2019-08-03 16:00:00,29.18,60.47,27.08,36.12,7.75,0.96,35.16,26.94,12.14,2.31,22.36,0.34 +2019-08-03 17:00:00,23.89,49.83,28.36,38.65,7.9,0.97,32.63,29.03,13.35,2.15,21.76,0.32 +2019-08-03 18:00:00,25.7,53.76,32.85,40.18,9.08,0.98,30.44,32.56,15.0,2.55,26.73,0.58 +2019-08-03 19:00:00,30.81,68.77,35.58,38.48,9.5,1.14,29.67,33.65,14.09,3.25,34.04,0.28 +2019-08-03 20:00:00,35.39,79.83,36.01,36.75,9.81,1.18,24.16,34.27,15.02,3.39,33.48,0.09 +2019-08-03 21:00:00,38.54,85.91,39.38,38.04,9.43,1.39,17.19,40.05,19.11,3.75,35.9,0.64 +2019-08-03 22:00:00,40.75,93.56,40.12,36.62,9.97,1.52,32.01,43.65,22.82,3.96,38.76,0.33 +2019-08-03 23:00:00,44.0,96.69,38.55,34.79,10.66,1.46,19.38,44.23,24.34,3.94,37.12,0.75 +2019-08-04 00:00:00,45.32,95.76,35.03,34.64,9.62,1.26,21.23,37.84,19.47,3.23,34.14,0.97 +2019-08-04 01:00:00,43.98,88.6,34.02,33.78,9.47,1.1,31.16,40.24,22.7,2.94,30.64,0.75 +2019-08-04 02:00:00,43.43,90.25,32.33,37.94,10.24,1.09,31.82,40.01,23.71,2.65,29.82,0.64 +2019-08-04 03:00:00,44.2,86.73,28.25,37.75,10.86,1.01,20.53,36.33,21.98,2.64,30.11,0.15 +2019-08-04 04:00:00,45.04,82.82,27.99,33.93,9.1,0.93,23.97,36.03,21.47,2.34,25.36,0.36 +2019-08-04 05:00:00,43.74,76.25,27.59,31.57,8.77,0.91,27.83,34.84,20.73,2.46,28.1,0.26 +2019-08-04 06:00:00,42.46,74.93,25.96,30.51,8.91,0.94,19.29,33.37,19.88,2.32,24.94,0.15 +2019-08-04 07:00:00,42.53,72.32,26.26,30.6,8.92,0.94,16.02,32.36,18.36,2.18,19.84,0.05 +2019-08-04 08:00:00,42.15,69.12,26.01,31.9,9.52,0.89,17.97,32.08,18.28,1.94,16.85,0.21 +2019-08-04 09:00:00,41.86,72.03,25.58,32.47,9.79,0.87,19.17,29.76,16.01,1.72,14.89,0.23 +2019-08-04 10:00:00,48.67,80.46,25.2,33.43,9.6,0.95,21.67,27.38,13.5,1.54,13.52,0.23 +2019-08-04 11:00:00,59.51,97.78,24.68,34.27,9.92,0.94,30.28,26.87,12.99,1.48,15.2,0.29 +2019-08-04 12:00:00,64.65,108.15,25.5,34.05,10.28,0.93,37.52,26.04,11.44,1.43,13.78,0.22 +2019-08-04 13:00:00,61.89,107.05,25.37,37.98,9.98,0.89,51.95,26.14,11.09,1.53,15.21,0.0 +2019-08-04 14:00:00,57.72,105.06,23.74,37.57,9.87,0.89,57.72,23.16,9.08,1.74,14.03,0.02 +2019-08-04 15:00:00,49.69,96.88,25.5,35.16,10.19,0.9,46.55,22.91,8.26,1.68,15.77,0.0 +2019-08-04 16:00:00,40.32,78.78,29.34,34.54,11.4,0.94,36.15,27.12,10.85,1.53,15.92,0.2 +2019-08-04 17:00:00,33.56,61.12,32.82,34.54,10.93,1.05,29.26,29.61,10.99,1.58,15.78,0.32 +2019-08-04 18:00:00,32.92,63.12,36.25,35.03,9.48,1.21,25.93,32.22,11.72,1.64,19.66,0.49 +2019-08-04 19:00:00,39.27,77.34,39.83,34.63,9.3,1.34,20.75,36.73,14.79,1.91,21.54,0.69 +2019-08-04 20:00:00,42.8,88.59,42.36,32.7,9.43,1.5,18.23,41.59,18.82,2.02,22.44,0.26 +2019-08-04 21:00:00,46.22,98.06,42.95,35.1,12.27,1.75,15.73,49.82,28.04,2.76,28.65,0.17 +2019-08-04 22:00:00,51.58,116.64,40.97,34.31,10.09,1.92,16.3,50.12,29.54,2.97,29.92,0.15 +2019-08-04 23:00:00,56.99,127.74,38.18,33.63,11.05,1.9,16.88,51.2,33.23,3.0,30.15,0.25 +2019-08-05 00:00:00,58.23,129.11,36.09,33.26,11.51,1.74,22.46,49.11,32.1,2.9,29.56,0.85 +2019-08-05 01:00:00,65.76,134.23,34.29,32.7,9.89,1.47,18.91,47.02,30.66,2.52,25.65,1.21 +2019-08-05 02:00:00,52.47,110.93,33.38,36.11,9.9,1.28,17.84,44.31,28.18,2.14,22.91,0.66 +2019-08-05 03:00:00,48.25,94.59,30.87,38.2,10.47,1.1,18.79,38.46,22.49,2.12,20.69,0.8 +2019-08-05 04:00:00,46.52,87.7,30.61,35.25,9.81,1.05,20.74,39.61,23.93,2.0,20.0,0.43 +2019-08-05 05:00:00,49.5,93.91,30.61,35.6,9.28,1.05,23.03,39.69,24.34,2.16,21.97,0.41 +2019-08-05 06:00:00,49.54,97.78,29.46,33.4,9.16,1.1,21.45,43.11,29.34,2.08,20.72,0.17 +2019-08-05 07:00:00,51.26,99.53,30.1,32.78,9.45,1.19,18.23,47.57,34.32,2.22,20.44,0.07 +2019-08-05 08:00:00,55.3,104.8,34.53,35.23,9.87,1.19,17.19,44.1,27.11,2.13,19.77,0.07 +2019-08-05 09:00:00,61.0,112.17,33.54,37.75,10.87,1.16,26.82,36.07,18.26,1.99,18.25,0.78 +2019-08-05 10:00:00,62.65,118.99,30.59,40.47,10.63,1.07,32.79,31.77,14.66,1.73,15.59,0.67 +2019-08-05 11:00:00,58.03,110.42,28.45,37.83,9.87,1.03,39.74,26.77,12.11,1.73,12.83,0.38 +2019-08-05 12:00:00,53.35,101.5,29.03,38.43,9.58,1.01,50.83,25.3,9.08,1.49,14.22,0.3 +2019-08-05 13:00:00,53.33,108.98,29.08,43.62,9.67,0.96,55.98,25.1,8.45,1.52,21.07,0.09 +2019-08-05 14:00:00,60.3,127.17,30.64,42.65,8.86,0.97,55.02,27.04,9.61,1.82,21.47,0.12 +2019-08-05 15:00:00,53.26,112.78,31.51,40.23,8.76,1.0,49.55,29.66,11.48,1.9,26.05,0.27 +2019-08-05 16:00:00,51.44,95.19,37.06,40.27,8.34,1.12,42.24,35.17,14.63,1.96,20.9,0.69 +2019-08-05 17:00:00,46.89,78.72,39.18,38.65,8.03,1.21,30.74,35.27,13.42,2.63,29.54,0.86 +2019-08-05 18:00:00,40.2,75.59,39.58,38.16,8.3,1.25,26.06,36.37,14.6,2.51,40.11,0.63 +2019-08-05 19:00:00,41.14,85.61,43.46,37.22,8.28,1.4,23.73,44.21,24.17,2.44,25.96,0.55 +2019-08-05 20:00:00,46.62,102.1,45.12,38.16,8.77,1.64,19.59,43.12,19.27,2.55,27.39,0.69 +2019-08-05 21:00:00,50.61,114.12,43.36,37.42,8.8,1.69,18.59,46.17,24.17,2.51,28.87,0.41 +2019-08-05 22:00:00,50.15,113.51,41.42,36.06,8.38,1.7,18.92,47.15,26.03,2.86,29.39,0.26 +2019-08-05 23:00:00,47.06,109.71,39.28,32.56,8.34,1.46,18.57,42.89,22.46,2.5,27.39,0.42 +2019-08-06 00:00:00,43.69,95.69,35.03,33.8,8.28,1.19,16.48,35.44,16.74,2.04,21.55,1.04 +2019-08-06 01:00:00,41.3,82.15,32.94,34.53,7.53,1.0,16.98,33.54,15.44,1.72,17.9,0.46 +2019-08-06 02:00:00,42.04,78.62,30.9,41.23,7.7,0.95,21.72,33.55,16.79,1.61,16.32,0.52 +2019-08-06 03:00:00,44.28,79.89,30.96,42.3,8.9,0.89,26.25,33.7,17.09,1.58,15.71,0.39 +2019-08-06 04:00:00,45.77,81.42,27.9,35.54,8.06,0.88,21.71,28.81,13.51,1.52,15.56,0.47 +2019-08-06 05:00:00,48.3,81.9,26.64,32.62,7.82,0.87,20.82,28.3,13.79,1.41,14.92,0.38 +2019-08-06 06:00:00,48.27,84.51,27.41,35.87,7.57,0.91,19.26,29.39,14.65,1.42,15.84,0.0 +2019-08-06 07:00:00,47.18,86.66,27.44,37.16,7.79,0.99,18.03,32.38,18.16,1.54,15.81,0.22 +2019-08-06 08:00:00,48.15,83.21,28.07,36.99,8.04,0.98,17.46,33.57,19.36,1.37,16.25,0.02 +2019-08-06 09:00:00,31.34,58.94,29.11,36.82,7.61,1.03,17.05,36.39,20.94,1.42,14.11,0.0 +2019-08-06 10:00:00,19.74,34.05,29.65,44.05,7.89,0.96,20.13,33.02,15.77,1.4,14.57,0.12 +2019-08-06 11:00:00,13.98,23.05,23.68,46.69,7.72,0.88,25.36,24.3,11.2,1.32,14.49,0.24 +2019-08-06 12:00:00,11.74,13.91,34.77,53.41,8.09,0.96,21.53,34.93,17.08,1.84,17.7,0.22 +2019-08-06 13:00:00,13.2,17.41,44.27,49.18,7.99,1.15,25.13,43.35,22.18,3.33,27.54,0.38 +2019-08-06 14:00:00,16.57,24.31,45.36,47.62,8.0,1.2,26.5,46.97,25.42,4.07,32.53,1.39 +2019-08-06 15:00:00,19.27,30.42,42.38,47.85,8.46,1.32,24.15,44.2,31.4,4.67,35.84,2.61 +2019-08-06 16:00:00,20.33,42.35,38.82,46.64,8.45,1.25,26.85,38.95,17.85,4.39,33.44,9.15 +2019-08-06 17:00:00,19.09,39.27,36.39,49.64,9.54,1.14,31.71,34.59,14.31,3.01,28.14,0.76 +2019-08-06 18:00:00,16.73,39.53,35.77,52.88,9.69,1.13,37.71,33.87,14.29,2.98,29.79,0.45 +2019-08-06 19:00:00,19.7,44.44,36.53,48.91,8.53,1.15,33.93,33.16,13.04,2.97,33.75,0.77 +2019-08-06 20:00:00,22.46,51.63,41.68,43.65,8.16,1.37,22.05,40.65,18.84,3.03,34.63,0.8 +2019-08-06 21:00:00,27.2,61.81,42.09,39.84,8.48,1.56,20.77,49.58,29.13,3.74,37.12,1.36 +2019-08-06 22:00:00,30.04,67.8,41.39,39.26,8.76,1.72,19.01,52.45,33.05,4.18,39.21,0.87 +2019-08-06 23:00:00,30.49,72.58,43.16,39.11,9.08,1.77,19.19,58.86,39.63,4.19,39.38,0.53 +2019-08-07 00:00:00,31.22,78.32,41.6,38.05,10.13,1.72,22.65,60.26,41.99,4.44,43.76,0.79 +2019-08-07 01:00:00,36.17,81.28,37.68,38.44,12.7,1.49,18.4,57.63,42.0,4.52,38.98,0.82 +2019-08-07 02:00:00,35.52,77.74,35.87,43.35,9.19,1.55,22.17,57.2,42.1,3.56,39.66,0.92 +2019-08-07 03:00:00,40.3,76.08,35.86,41.27,10.13,1.4,22.45,51.61,34.15,3.89,40.19,1.53 +2019-08-07 04:00:00,44.83,74.96,33.71,34.44,9.26,1.26,19.36,47.73,31.06,3.51,36.51,1.25 +2019-08-07 05:00:00,42.13,71.54,31.68,30.85,10.7,1.26,23.52,48.47,33.97,3.6,33.5,1.3 +2019-08-07 06:00:00,43.54,75.55,28.9,32.04,10.56,1.39,29.3,48.23,36.21,3.7,33.35,0.62 +2019-08-07 07:00:00,46.54,80.57,28.05,30.87,9.09,1.43,30.21,51.3,40.13,3.39,32.78,0.39 +2019-08-07 08:00:00,55.72,98.77,33.38,31.9,9.66,1.49,53.51,56.23,42.43,3.42,32.15,0.2 +2019-08-07 09:00:00,58.27,108.26,36.18,32.95,10.3,1.43,47.25,47.37,29.49,3.54,33.0,0.35 +2019-08-07 10:00:00,55.0,103.73,32.79,33.78,10.43,1.3,36.32,36.51,19.23,3.21,31.07,0.54 +2019-08-07 11:00:00,41.09,82.72,28.89,37.66,11.33,1.07,37.28,29.43,14.14,2.91,25.68,0.55 +2019-08-07 12:00:00,32.24,67.96,27.0,34.57,10.69,0.93,38.94,26.28,11.2,2.89,21.34,0.27 +2019-08-07 13:00:00,32.49,63.56,26.16,32.57,9.64,1.01,40.03,22.02,8.31,2.06,22.62,0.34 +2019-08-07 14:00:00,22.26,52.41,27.26,33.49,8.17,0.88,37.25,22.94,7.59,2.12,19.09,0.33 +2019-08-07 15:00:00,15.78,46.08,24.62,32.38,8.04,0.93,35.36,22.02,7.92,2.07,17.01,0.15 +2019-08-07 16:00:00,13.72,47.68,24.7,31.04,7.65,0.94,33.13,23.86,9.66,2.25,19.7,0.0 +2019-08-07 17:00:00,13.36,46.93,26.81,32.74,8.31,0.86,31.23,25.67,10.38,1.93,25.25,0.05 +2019-08-07 18:00:00,14.84,49.38,28.87,32.52,8.63,0.87,31.31,26.69,10.47,2.02,23.66,0.0 +2019-08-07 19:00:00,14.05,53.66,29.66,31.87,9.25,0.93,25.28,26.39,10.08,2.34,24.48,0.37 +2019-08-07 20:00:00,17.48,61.9,34.86,31.15,9.77,1.2,20.57,33.22,14.48,2.66,27.08,0.47 +2019-08-07 21:00:00,21.92,77.74,36.78,30.89,10.17,1.36,18.31,37.17,17.7,2.82,29.33,0.66 +2019-08-07 22:00:00,26.87,86.19,36.76,29.3,10.52,1.4,22.14,37.34,17.8,3.32,27.54,0.86 +2019-08-07 23:00:00,27.71,88.43,35.61,29.6,11.15,1.3,20.91,37.6,19.08,3.58,29.43,1.23 +2019-08-08 00:00:00,30.62,88.61,32.27,28.5,10.31,1.14,26.57,33.22,15.85,3.0,26.25,0.53 +2019-08-08 01:00:00,28.02,74.15,28.34,27.89,10.19,0.86,27.36,30.01,14.17,2.64,22.46,0.26 +2019-08-08 02:00:00,25.1,58.51,27.53,32.63,13.25,0.81,28.1,30.66,15.53,2.42,21.17,0.25 +2019-08-08 03:00:00,26.52,62.59,26.16,33.1,15.33,0.78,19.0,28.87,14.8,2.32,21.32,0.53 +2019-08-08 04:00:00,24.97,55.79,25.2,29.13,11.38,0.72,15.59,28.92,15.83,2.04,23.07,0.52 +2019-08-08 05:00:00,33.72,66.14,24.13,28.47,11.89,0.78,15.94,31.07,18.28,1.9,24.55,0.44 +2019-08-08 06:00:00,32.94,70.43,24.5,26.94,10.79,0.86,24.59,38.04,25.99,1.81,22.38,0.41 +2019-08-08 07:00:00,34.45,79.14,26.33,26.2,11.71,1.03,29.99,44.21,32.54,2.16,24.86,0.46 +2019-08-08 08:00:00,42.6,103.22,29.63,26.42,10.52,1.18,28.29,38.31,23.51,2.26,25.57,0.43 +2019-08-08 09:00:00,45.92,109.75,31.46,27.03,10.84,1.21,30.84,32.8,16.17,2.25,23.19,0.13 +2019-08-08 10:00:00,39.37,99.19,29.66,28.39,10.55,1.13,34.15,31.26,15.03,1.98,18.68,0.32 +2019-08-08 11:00:00,28.43,87.24,30.06,35.06,11.06,1.05,41.33,31.64,14.17,2.41,15.53,0.12 +2019-08-08 12:00:00,28.22,84.09,24.61,34.58,10.72,0.91,49.02,25.75,11.05,3.74,13.9,0.3 +2019-08-08 13:00:00,22.66,70.17,24.85,32.51,9.87,0.92,50.01,24.38,9.69,1.74,13.04,0.31 +2019-08-08 14:00:00,17.53,60.38,20.38,33.85,9.18,0.88,44.06,19.1,7.13,1.6,11.68,0.25 +2019-08-08 15:00:00,14.77,53.49,21.38,32.55,9.11,0.81,46.98,20.89,7.94,1.43,11.46,0.14 +2019-08-08 16:00:00,15.91,57.99,24.43,32.8,9.01,0.77,43.49,23.91,9.47,1.45,11.75,0.18 +2019-08-08 17:00:00,18.08,66.36,24.83,33.77,8.94,0.78,40.41,24.96,10.28,1.44,13.41,0.28 +2019-08-08 18:00:00,19.98,69.26,26.91,33.96,8.74,0.83,34.17,25.48,9.88,1.57,15.89,0.15 +2019-08-08 19:00:00,17.46,71.4,34.21,30.57,9.18,1.1,28.73,28.22,9.29,1.8,19.09,0.21 +2019-08-08 20:00:00,20.74,92.38,41.34,30.47,10.29,1.31,21.07,35.75,13.16,2.75,23.57,0.34 +2019-08-08 21:00:00,28.21,109.78,41.87,33.52,10.99,1.57,19.23,41.17,19.76,3.24,33.67,0.57 +2019-08-08 22:00:00,35.09,123.62,38.83,31.94,10.51,1.58,21.15,38.24,17.99,3.44,40.45,1.13 +2019-08-08 23:00:00,33.14,111.66,34.75,31.28,10.33,1.35,21.96,32.8,13.89,2.98,28.25,1.21 +2019-08-09 00:00:00,32.2,87.01,30.57,28.54,9.83,1.09,21.61,29.59,12.52,2.12,21.23,0.69 +2019-08-09 01:00:00,27.24,74.44,22.46,28.63,9.15,0.72,28.44,23.23,10.43,1.71,16.59,0.45 +2019-08-09 02:00:00,15.38,58.74,19.43,33.16,9.13,0.7,25.06,19.59,8.54,1.29,11.37,0.27 +2019-08-09 03:00:00,10.07,42.91,18.78,32.32,10.16,0.67,24.52,18.17,7.8,1.06,10.3,0.1 +2019-08-09 04:00:00,9.32,43.73,18.38,31.72,9.83,0.64,22.47,17.76,7.13,0.83,9.24,0.07 +2019-08-09 05:00:00,9.17,43.78,17.53,30.17,9.75,0.62,23.38,18.8,8.68,0.77,9.14,0.05 +2019-08-09 06:00:00,9.37,51.34,17.89,28.03,9.49,0.7,26.77,19.11,8.69,0.65,8.18,0.12 +2019-08-09 07:00:00,8.01,40.7,19.64,26.44,9.5,0.7,21.68,19.79,9.17,0.83,8.26,0.14 +2019-08-09 08:00:00,10.47,41.61,21.76,25.33,9.58,1.11,19.72,23.21,11.62,0.97,11.17,0.17 +2019-08-09 09:00:00,12.05,57.21,22.54,26.06,9.92,0.75,24.71,24.15,12.67,1.16,11.57,0.05 +2019-08-09 10:00:00,14.04,72.9,21.62,28.85,9.25,0.75,27.17,24.55,12.54,1.07,10.6,0.06 +2019-08-09 11:00:00,14.9,79.21,21.3,27.08,8.91,0.75,26.7,24.26,12.29,1.29,12.98,0.08 +2019-08-09 12:00:00,15.01,83.63,20.27,27.68,9.2,0.78,28.43,20.93,9.47,1.56,17.04,0.12 +2019-08-09 13:00:00,15.32,85.5,21.23,27.5,8.85,0.8,28.2,20.58,8.64,1.99,18.86,0.13 +2019-08-09 14:00:00,14.22,71.19,21.63,27.05,8.93,0.89,30.62,20.31,8.46,2.52,20.32,0.19 +2019-08-09 15:00:00,13.68,67.32,21.29,26.67,9.39,0.88,33.19,19.74,7.9,1.98,18.91,0.1 +2019-08-09 16:00:00,15.87,72.17,20.45,26.8,8.83,0.89,31.83,19.15,7.81,2.12,18.32,0.06 +2019-08-09 17:00:00,13.97,61.64,21.39,26.34,9.01,0.92,30.29,21.56,9.71,1.9,16.99,0.11 +2019-08-09 18:00:00,11.67,49.11,21.9,27.09,9.07,0.98,30.26,20.83,8.59,2.04,17.69,0.35 +2019-08-09 19:00:00,11.96,52.55,25.14,27.66,8.53,0.93,26.53,23.88,9.47,2.16,20.6,0.24 +2019-08-09 20:00:00,15.21,59.62,28.29,27.65,9.32,1.08,23.22,25.42,9.58,2.66,21.28,0.38 +2019-08-09 21:00:00,18.37,63.74,27.66,28.12,9.22,1.26,20.89,24.4,9.22,2.27,30.17,0.42 +2019-08-09 22:00:00,18.91,62.99,24.25,27.51,8.86,1.04,26.04,22.09,8.22,1.96,20.14,0.73 +2019-08-09 23:00:00,13.79,52.28,24.62,25.81,9.54,0.94,26.3,23.62,9.76,1.54,12.09,0.9 +2019-08-10 00:00:00,14.85,43.95,25.3,25.63,9.27,0.86,25.94,26.88,14.86,1.38,10.44,0.95 +2019-08-10 01:00:00,14.71,37.86,22.01,24.94,9.28,0.7,26.72,20.1,8.11,1.19,9.47,0.81 +2019-08-10 02:00:00,14.74,32.53,19.74,27.15,9.81,0.71,23.84,17.27,6.24,1.09,8.56,0.96 +2019-08-10 03:00:00,14.44,31.15,19.16,27.68,9.83,0.76,22.02,18.63,7.75,0.89,8.79,0.73 +2019-08-10 04:00:00,15.96,34.45,18.84,25.0,9.21,0.76,23.08,19.7,8.76,0.88,8.58,0.11 +2019-08-10 05:00:00,18.71,37.6,18.2,24.56,9.12,0.81,23.24,18.94,8.45,0.75,7.76,0.29 +2019-08-10 06:00:00,19.78,37.6,17.96,24.18,8.73,0.85,24.65,17.01,6.81,0.68,7.6,0.17 +2019-08-10 07:00:00,17.87,35.15,17.8,23.31,9.07,0.9,24.33,17.4,7.3,0.62,6.96,0.15 +2019-08-10 08:00:00,14.56,32.38,18.19,22.71,8.7,0.82,26.81,19.07,8.64,0.71,6.5,0.31 +2019-08-10 09:00:00,14.4,37.3,18.86,23.03,8.92,0.79,26.09,20.8,10.12,0.74,6.85,0.81 +2019-08-10 10:00:00,17.54,52.12,19.28,23.98,8.38,0.85,25.91,19.98,9.62,0.83,7.72,0.4 +2019-08-10 11:00:00,19.95,51.72,20.01,23.77,8.94,0.93,30.42,21.24,9.81,1.16,11.37,1.51 +2019-08-10 12:00:00,21.58,63.09,20.0,24.25,8.99,0.84,27.47,21.85,10.23,1.12,12.89,3.28 +2019-08-10 13:00:00,19.13,60.53,20.71,24.51,7.71,0.86,25.27,22.34,10.3,1.76,12.53,1.43 +2019-08-10 14:00:00,18.15,52.53,20.52,25.62,7.35,0.84,29.4,20.41,8.53,1.33,10.91,2.36 +2019-08-10 15:00:00,14.37,50.31,20.24,24.45,7.37,0.85,33.23,18.96,7.32,0.98,9.12,2.25 +2019-08-10 16:00:00,13.46,47.47,20.22,24.43,7.54,0.84,34.65,19.11,7.35,1.0,10.58,2.24 +2019-08-10 17:00:00,12.1,45.9,21.66,24.78,7.39,0.88,33.08,21.53,8.78,1.03,9.04,0.63 +2019-08-10 18:00:00,13.16,49.23,22.82,24.7,7.64,0.95,28.94,22.07,8.61,1.17,10.95,0.87 +2019-08-10 19:00:00,13.68,59.06,24.82,23.9,7.35,1.0,25.21,22.02,7.92,1.17,11.93,0.51 +2019-08-10 20:00:00,14.0,57.45,28.26,23.56,7.82,1.03,20.94,23.97,8.01,1.54,13.14,0.16 +2019-08-10 21:00:00,18.4,62.9,31.18,23.44,8.33,0.96,17.3,27.44,9.96,1.71,15.71,0.37 +2019-08-10 22:00:00,22.43,65.55,32.3,22.79,8.26,1.03,16.37,29.37,11.16,1.71,14.88,2.34 +2019-08-10 23:00:00,23.5,68.15,31.44,23.18,8.36,1.05,15.37,29.18,11.82,1.55,15.02,1.06 +2019-08-11 00:00:00,27.07,64.12,31.21,22.05,8.22,1.01,15.64,29.45,12.32,1.43,15.45,1.46 +2019-08-11 01:00:00,27.1,61.3,30.7,22.56,8.49,1.03,17.35,28.71,12.48,1.34,14.58,1.29 +2019-08-11 02:00:00,24.36,59.91,29.29,25.56,9.64,0.95,19.54,29.86,14.37,1.33,18.53,1.28 +2019-08-11 03:00:00,28.1,70.28,27.38,27.1,10.34,0.87,31.14,29.9,14.78,1.46,17.09,0.82 +2019-08-11 04:00:00,31.05,71.97,25.96,24.33,9.74,0.87,26.94,26.77,12.57,1.4,18.41,0.97 +2019-08-11 05:00:00,34.02,73.69,24.45,23.75,9.42,0.92,28.41,25.31,11.78,1.35,15.73,0.97 +2019-08-11 06:00:00,37.05,70.08,24.69,23.71,8.97,0.98,19.81,25.71,12.02,1.28,13.78,0.43 +2019-08-11 07:00:00,34.59,68.42,24.99,23.69,8.59,0.99,16.32,29.04,15.12,1.25,13.12,0.4 +2019-08-11 08:00:00,31.63,68.78,23.0,23.7,8.46,0.99,19.01,25.94,13.29,1.31,12.91,0.48 +2019-08-11 09:00:00,30.34,63.64,25.86,22.89,8.7,1.04,20.18,22.25,10.46,1.25,11.19,2.71 +2019-08-11 10:00:00,25.6,57.42,20.71,24.58,8.52,0.89,24.04,23.99,14.31,0.92,7.96,2.78 +2019-08-11 11:00:00,24.56,60.95,20.81,25.67,8.2,0.86,28.02,23.75,9.2,0.82,8.45,2.93 +2019-08-11 12:00:00,26.4,70.54,22.37,26.3,8.24,0.86,32.09,23.23,9.79,0.93,10.46,1.55 +2019-08-11 13:00:00,26.3,77.13,23.84,26.48,8.3,0.83,35.12,24.0,9.78,0.89,10.84,0.17 +2019-08-11 14:00:00,25.74,80.72,21.46,28.08,8.27,0.79,40.56,20.09,7.5,0.79,10.42,0.29 +2019-08-11 15:00:00,23.23,70.05,23.12,28.4,8.35,0.84,42.16,20.91,7.72,0.79,11.35,0.25 +2019-08-11 16:00:00,22.75,76.11,25.94,29.82,8.37,0.87,42.6,22.21,7.31,0.82,10.95,0.22 +2019-08-11 17:00:00,19.05,62.16,22.91,27.72,8.09,0.75,37.54,22.06,8.76,0.73,10.03,1.26 +2019-08-11 18:00:00,17.74,57.15,22.25,27.56,8.43,0.97,31.52,22.26,9.57,0.76,11.04,0.16 +2019-08-11 19:00:00,18.88,66.7,26.08,27.71,8.28,0.99,26.28,26.27,11.39,0.94,16.25,0.27 +2019-08-11 20:00:00,17.77,63.91,30.47,28.26,8.56,1.04,21.85,31.04,13.89,1.04,11.34,0.47 +2019-08-11 21:00:00,16.84,68.38,33.99,29.11,8.71,1.21,17.9,34.4,15.44,1.26,13.26,0.69 +2019-08-11 22:00:00,21.24,68.04,31.1,28.26,8.3,1.23,18.12,28.65,11.3,1.3,15.09,0.98 +2019-08-11 23:00:00,21.4,60.26,29.7,24.92,8.43,1.19,16.97,26.44,9.73,1.27,16.22,0.9 +2019-08-12 00:00:00,19.81,56.17,28.99,23.74,8.31,1.07,17.75,26.96,10.48,1.02,13.96,1.2 +2019-08-12 01:00:00,18.95,52.36,27.44,24.17,7.98,0.93,18.09,27.38,11.34,0.93,12.42,0.65 +2019-08-12 02:00:00,19.91,48.04,26.57,28.34,7.64,1.0,20.56,25.57,10.14,0.78,11.88,0.34 +2019-08-12 03:00:00,19.06,44.65,23.97,27.25,8.71,0.79,17.49,22.44,8.85,0.81,10.92,0.88 +2019-08-12 04:00:00,17.92,40.26,22.3,23.74,7.81,0.78,16.87,21.08,8.61,0.77,10.03,0.41 +2019-08-12 05:00:00,16.4,34.62,21.69,22.7,7.55,1.08,16.07,21.48,9.08,1.67,9.83,0.75 +2019-08-12 06:00:00,16.57,34.73,22.64,22.71,7.52,0.85,15.54,23.34,10.4,1.7,9.11,1.05 +2019-08-12 07:00:00,15.87,37.3,22.63,22.58,7.86,0.79,16.07,25.29,13.09,2.33,9.97,0.59 +2019-08-12 08:00:00,15.99,41.51,23.65,21.64,7.83,0.83,16.88,24.93,11.87,2.02,10.25,0.18 +2019-08-12 09:00:00,17.09,43.5,22.17,22.2,8.1,0.85,17.63,23.76,11.63,1.44,9.43,0.29 +2019-08-12 10:00:00,17.77,45.1,23.83,23.05,7.87,0.88,18.33,25.16,12.34,2.08,9.55,0.09 +2019-08-12 11:00:00,19.1,47.09,23.99,22.77,7.8,0.95,18.52,27.01,13.89,1.26,13.87,0.21 +2019-08-12 12:00:00,17.82,36.36,25.45,24.95,8.0,0.98,19.9,25.62,11.65,1.31,17.3,0.2 +2019-08-12 13:00:00,19.96,44.75,24.84,25.87,8.04,0.95,25.98,24.46,10.18,1.41,18.11,0.19 +2019-08-12 14:00:00,22.17,55.57,22.56,25.98,7.63,0.87,35.05,22.53,9.7,1.3,16.31,1.59 +2019-08-12 15:00:00,23.27,57.99,21.98,25.02,8.19,0.89,40.04,21.15,8.03,1.27,13.96,2.37 +2019-08-12 16:00:00,22.46,56.77,23.02,26.33,8.21,0.92,39.12,20.38,7.33,1.44,16.62,2.59 +2019-08-12 17:00:00,21.07,52.61,23.54,24.15,7.97,0.98,30.17,20.94,7.59,1.31,19.24,1.08 +2019-08-12 18:00:00,17.33,42.55,27.68,25.4,8.15,1.01,22.04,24.65,8.99,1.38,17.54,2.42 +2019-08-12 19:00:00,18.49,55.51,32.34,26.99,8.18,1.14,20.46,30.68,13.02,1.87,22.47,1.27 +2019-08-12 20:00:00,25.71,70.78,39.01,25.71,8.83,1.56,17.46,46.01,26.36,1.84,30.08,0.42 +2019-08-12 21:00:00,33.26,90.64,40.02,26.86,9.54,2.01,16.67,58.17,40.02,2.43,30.36,0.73 +2019-08-12 22:00:00,34.77,93.06,32.07,28.76,8.98,1.4,19.16,41.17,25.38,3.03,29.91,1.06 +2019-08-12 23:00:00,22.0,64.0,25.9,26.42,8.6,1.04,19.23,30.15,16.55,1.93,18.92,0.83 +2019-08-13 00:00:00,16.36,46.55,28.59,27.25,7.92,1.11,17.18,32.28,16.75,1.5,14.3,0.49 +2019-08-13 01:00:00,15.95,45.88,29.31,28.56,7.82,0.9,15.55,30.42,14.41,1.68,13.33,1.0 +2019-08-13 02:00:00,14.35,39.41,25.49,30.66,8.1,0.78,16.53,27.67,13.88,1.23,15.65,0.62 +2019-08-13 03:00:00,15.66,32.9,20.11,34.24,8.77,0.85,15.94,21.51,10.12,1.21,9.8,0.53 +2019-08-13 04:00:00,16.96,34.49,19.71,30.96,7.8,0.98,15.15,20.77,9.51,1.42,10.54,0.71 +2019-08-13 05:00:00,19.62,40.24,19.21,29.25,7.91,0.97,15.38,20.43,9.52,1.37,10.2,0.53 +2019-08-13 06:00:00,19.17,43.77,22.38,27.17,8.06,0.88,15.18,22.38,10.18,1.25,9.68,0.12 +2019-08-13 07:00:00,18.78,46.04,22.8,26.56,8.53,0.96,13.38,29.05,17.43,1.34,9.21,0.17 +2019-08-13 08:00:00,22.0,64.22,22.88,27.99,8.67,0.97,15.47,31.72,19.85,1.53,10.66,0.05 +2019-08-13 09:00:00,24.16,79.27,20.84,27.53,8.56,0.92,19.79,28.93,17.82,1.52,9.83,2.3 +2019-08-13 10:00:00,27.18,80.34,20.43,29.72,8.46,1.08,23.7,24.04,13.1,1.67,12.73,2.25 +2019-08-13 11:00:00,27.98,81.91,24.18,28.07,8.24,1.11,25.69,26.5,13.58,1.54,18.88,2.41 +2019-08-13 12:00:00,27.19,80.01,23.96,31.46,8.57,0.94,31.9,28.07,15.29,1.56,17.48,3.1 +2019-08-13 13:00:00,26.28,80.4,23.34,30.03,7.84,0.98,36.92,28.7,15.16,1.58,15.97,2.29 +2019-08-13 14:00:00,27.82,82.92,22.12,33.69,7.46,0.95,35.8,27.69,14.47,1.35,15.31,2.12 +2019-08-13 15:00:00,26.66,77.03,22.3,29.62,8.18,0.97,31.94,24.38,12.09,1.29,23.91,1.85 +2019-08-13 16:00:00,20.38,54.59,27.35,29.39,8.23,1.06,25.61,25.15,10.36,2.03,37.76,1.17 +2019-08-13 17:00:00,22.44,47.33,31.52,28.32,8.23,1.27,24.51,34.72,18.37,2.34,34.59,0.12 +2019-08-13 18:00:00,22.44,45.34,33.6,29.97,8.5,1.31,23.43,38.26,20.68,2.47,26.7,0.2 +2019-08-13 19:00:00,21.22,41.59,36.54,28.85,8.65,1.4,17.0,39.6,20.59,2.31,25.92,3.15 +2019-08-13 20:00:00,22.25,43.06,39.41,28.55,9.0,1.51,15.68,50.89,32.07,2.67,27.16,5.65 +2019-08-13 21:00:00,22.85,51.12,40.99,28.13,9.16,1.7,15.41,55.91,36.83,2.96,29.99,5.78 +2019-08-13 22:00:00,22.64,59.2,39.52,28.69,9.11,1.47,14.5,53.29,34.62,2.67,26.89,5.42 +2019-08-13 23:00:00,19.97,50.63,34.32,27.36,9.05,1.32,15.8,47.32,31.74,1.85,20.16,11.12 +2019-08-14 00:00:00,18.66,46.83,30.07,26.28,8.12,1.22,15.02,39.63,25.11,1.53,19.95,4.97 +2019-08-14 01:00:00,19.86,45.2,27.87,27.92,7.26,0.93,18.8,29.54,14.32,1.24,16.37,10.46 +2019-08-14 02:00:00,18.15,33.38,25.01,32.1,7.06,0.84,21.46,27.38,13.02,1.08,14.34,1.58 +2019-08-14 03:00:00,13.23,19.22,23.66,33.75,7.95,0.8,19.34,25.73,12.04,0.93,11.28,0.87 +2019-08-14 04:00:00,11.16,12.13,21.3,28.71,7.04,0.83,17.09,21.63,9.58,0.99,11.53,0.55 +2019-08-14 05:00:00,11.08,11.61,22.4,26.92,7.35,0.86,16.07,22.2,9.76,1.1,11.45,1.14 +2019-08-14 06:00:00,13.72,14.32,24.92,25.68,7.62,0.87,19.3,27.47,13.94,1.14,12.37,1.43 +2019-08-14 07:00:00,13.03,24.71,26.6,23.99,7.99,0.89,21.79,30.69,16.62,1.29,13.18,0.83 +2019-08-14 08:00:00,19.13,32.52,31.11,23.85,8.09,1.02,27.99,38.33,22.67,1.47,15.44,1.43 +2019-08-14 09:00:00,24.91,43.54,29.17,27.15,9.07,1.05,30.72,32.35,17.04,1.87,16.36,1.31 +2019-08-14 10:00:00,29.27,54.5,30.84,29.86,10.22,1.09,30.95,29.81,13.27,1.88,17.51,8.24 +2019-08-14 11:00:00,42.71,64.4,30.99,32.8,9.58,1.08,39.45,29.34,13.13,1.82,16.84,4.13 +2019-08-14 12:00:00,48.13,77.26,33.49,31.55,8.73,1.09,54.73,31.93,14.52,1.82,16.14,12.73 +2019-08-14 13:00:00,55.4,93.9,34.41,32.31,8.97,1.12,60.11,32.31,11.12,1.97,17.1,10.14 +2019-08-14 14:00:00,52.71,82.46,27.3,30.32,8.49,1.03,51.5,24.75,10.04,2.57,17.77,0.46 +2019-08-14 15:00:00,38.73,69.31,28.67,30.59,8.69,1.1,47.54,23.98,7.64,2.27,18.07,3.66 +2019-08-14 16:00:00,34.54,64.47,31.52,30.58,8.54,1.14,53.65,29.3,11.83,1.45,20.08,6.55 +2019-08-14 17:00:00,43.38,72.8,32.79,29.29,8.17,1.12,50.89,29.67,11.42,2.41,24.49,2.73 +2019-08-14 18:00:00,41.39,78.34,37.76,29.01,8.21,1.24,43.18,31.95,10.63,2.48,29.0,5.93 +2019-08-14 19:00:00,41.83,80.21,35.0,28.7,8.76,1.18,34.82,32.68,13.43,1.75,31.89,12.61 +2019-08-14 20:00:00,43.75,81.37,45.37,28.67,8.96,1.56,24.21,42.59,18.28,2.83,39.26,12.35 +2019-08-14 21:00:00,49.88,87.88,47.95,29.2,8.96,1.92,19.39,52.48,29.55,3.51,41.71,19.67 +2019-08-14 22:00:00,56.76,101.47,44.15,30.13,9.99,2.25,17.74,58.6,38.47,3.36,41.69,16.0 +2019-08-14 23:00:00,55.66,108.72,43.13,28.48,10.23,2.35,18.6,67.99,49.56,3.78,40.62,18.18 +2019-08-15 00:00:00,55.1,110.65,40.42,27.93,10.35,2.3,18.31,67.11,49.6,3.08,38.12,4.63 +2019-08-15 01:00:00,56.16,110.06,35.16,27.51,9.51,1.91,17.66,60.98,44.48,3.32,36.15,2.83 +2019-08-15 02:00:00,57.85,111.17,32.48,31.01,9.85,1.64,18.35,50.05,35.43,3.22,34.99,4.04 +2019-08-15 03:00:00,54.89,103.3,30.0,36.66,9.82,1.31,16.48,41.31,25.67,2.7,33.78,13.04 +2019-08-15 04:00:00,53.46,98.32,27.77,32.77,8.66,1.25,16.65,36.45,22.24,2.36,37.07,1.14 +2019-08-15 05:00:00,49.86,85.88,24.94,30.75,8.29,1.05,19.38,30.19,17.46,2.4,33.81,1.88 +2019-08-15 06:00:00,36.93,60.78,19.42,29.86,7.89,0.85,22.21,25.53,14.07,1.54,20.81,7.58 +2019-08-15 07:00:00,13.68,21.89,21.03,28.89,7.64,0.81,19.5,27.41,15.33,0.96,12.48,7.29 +2019-08-15 08:00:00,12.28,20.35,23.27,28.28,7.73,0.89,15.35,30.0,17.11,1.11,12.55,4.86 +2019-08-15 09:00:00,20.27,29.18,24.08,28.09,8.18,0.95,16.31,32.15,19.01,1.29,12.41,1.04 +2019-08-15 10:00:00,22.55,37.03,21.66,31.71,7.96,0.88,20.24,25.19,14.7,1.25,12.78,0.36 +2019-08-15 11:00:00,19.82,38.43,19.97,34.99,7.63,0.79,24.8,24.61,12.54,1.07,10.02,3.59 +2019-08-15 12:00:00,17.56,34.63,19.67,34.85,8.75,0.76,30.04,23.72,11.6,0.95,7.95,5.73 +2019-08-15 13:00:00,18.26,38.09,21.03,34.75,8.41,0.77,34.52,24.97,12.11,0.88,7.69,1.39 +2019-08-15 14:00:00,21.08,40.07,21.76,33.28,8.18,0.78,32.56,26.14,12.63,0.79,7.03,0.61 +2019-08-15 15:00:00,19.13,39.75,20.05,32.13,8.0,0.75,32.92,25.43,12.61,0.78,6.6,0.05 +2019-08-15 16:00:00,17.52,37.84,21.46,31.01,7.99,0.76,33.05,26.13,12.69,0.61,5.93,3.28 +2019-08-15 17:00:00,16.76,37.92,20.4,29.36,7.99,0.8,32.17,25.39,12.51,0.71,5.72,9.34 +2019-08-15 18:00:00,17.4,38.72,20.99,32.27,8.02,1.0,31.0,26.68,13.36,0.76,6.63,6.35 +2019-08-15 19:00:00,17.59,42.27,25.27,33.6,8.19,0.84,28.22,30.49,14.72,0.79,7.15,0.04 +2019-08-15 20:00:00,20.16,51.15,31.12,32.79,9.0,0.98,21.96,33.02,14.58,1.31,9.89,1.28 +2019-08-15 21:00:00,24.69,57.33,29.46,31.59,8.39,0.98,20.01,31.52,13.9,1.45,11.5,1.3 +2019-08-15 22:00:00,24.24,54.81,25.55,29.07,8.76,0.97,21.17,28.58,13.22,1.46,10.92,0.39 +2019-08-15 23:00:00,23.37,51.07,23.72,27.9,9.01,0.91,23.12,28.39,13.79,1.3,10.2,0.2 +2019-08-16 00:00:00,19.54,44.8,21.51,28.5,9.21,0.77,23.57,25.97,12.65,1.02,8.53,0.62 +2019-08-16 01:00:00,15.18,32.33,19.56,29.26,9.09,0.71,29.38,23.23,11.07,0.79,6.0,1.84 +2019-08-16 02:00:00,13.13,26.07,17.22,35.98,8.86,0.69,30.33,20.98,10.07,0.67,5.56,7.03 +2019-08-16 03:00:00,13.23,24.87,16.42,31.88,9.31,0.67,26.18,21.52,11.27,0.52,5.17,4.63 +2019-08-16 04:00:00,13.72,26.48,17.35,28.46,8.33,0.68,25.16,22.57,11.76,0.62,5.12,3.27 +2019-08-16 05:00:00,15.14,28.85,17.11,27.09,8.44,0.72,22.38,21.55,10.98,0.66,5.69,2.19 +2019-08-16 06:00:00,16.58,28.1,16.92,26.87,8.5,0.72,20.52,21.04,10.55,0.6,5.54,2.33 +2019-08-16 07:00:00,17.39,32.39,18.96,25.09,8.83,0.83,19.41,23.25,11.83,0.76,5.99,0.08 +2019-08-16 08:00:00,18.78,37.93,20.29,24.16,8.95,0.84,19.55,26.5,14.49,0.68,6.49,3.06 +2019-08-16 09:00:00,21.47,45.44,19.81,28.53,9.05,0.94,21.73,26.22,14.4,0.89,7.48,2.67 +2019-08-16 10:00:00,19.89,46.04,20.3,25.6,9.02,0.75,22.83,25.1,13.22,0.96,7.97,2.27 +2019-08-16 11:00:00,17.21,48.11,20.32,26.47,8.25,0.76,25.67,24.57,12.4,0.99,10.33,3.12 +2019-08-16 12:00:00,14.82,46.68,21.01,28.95,8.09,0.75,30.33,26.09,13.87,1.09,10.73,0.11 +2019-08-16 13:00:00,14.43,47.48,21.67,29.33,7.91,0.87,29.75,28.23,14.7,1.19,12.66,4.68 +2019-08-16 14:00:00,15.52,44.19,20.84,28.18,7.82,0.99,31.22,26.64,13.8,1.15,11.4,8.64 +2019-08-16 15:00:00,14.09,39.71,21.46,25.95,9.01,1.03,29.97,26.97,14.09,1.03,11.25,7.92 +2019-08-16 16:00:00,13.02,38.15,21.9,24.9,8.46,0.85,27.72,25.94,14.28,1.09,12.2,8.49 +2019-08-16 17:00:00,11.51,31.67,22.62,25.3,8.02,0.95,22.54,26.64,14.56,0.96,10.63,0.05 +2019-08-16 18:00:00,9.93,26.8,24.94,26.13,8.53,1.0,19.67,27.89,14.6,1.27,12.53,0.06 +2019-08-16 19:00:00,12.2,34.72,26.1,25.29,8.56,1.0,18.14,28.76,15.34,1.29,18.19,0.0 +2019-08-16 20:00:00,13.01,32.12,28.66,22.5,8.58,1.12,16.21,34.72,18.61,1.79,16.02,0.11 +2019-08-16 21:00:00,14.99,38.74,28.26,30.59,8.34,1.1,17.27,33.83,17.72,2.13,18.84,0.12 +2019-08-16 22:00:00,18.69,43.05,28.02,28.99,8.56,1.1,15.25,33.64,17.48,2.07,19.24,0.0 +2019-08-16 23:00:00,19.09,45.77,25.09,27.87,8.81,0.96,21.4,29.75,15.31,1.76,16.7,0.47 +2019-08-17 00:00:00,15.71,36.99,21.47,26.52,8.55,0.81,25.61,25.24,12.3,1.28,11.77,0.23 +2019-08-17 01:00:00,13.23,30.03,18.73,25.31,8.08,0.64,24.56,22.75,11.41,0.97,8.85,0.95 +2019-08-17 02:00:00,12.8,24.67,17.96,27.74,7.85,0.61,19.66,23.62,12.5,0.81,8.38,0.96 +2019-08-17 03:00:00,11.79,25.85,18.19,24.06,9.19,0.68,17.23,24.68,13.7,0.66,8.87,0.55 +2019-08-17 04:00:00,12.14,21.47,18.07,28.61,7.81,0.64,16.69,22.55,11.67,0.62,8.84,1.41 +2019-08-17 05:00:00,11.63,18.38,16.6,26.44,7.28,0.67,16.68,20.92,10.87,0.59,8.78,0.57 +2019-08-17 06:00:00,11.19,17.76,17.03,24.42,6.91,0.73,17.35,21.11,11.04,0.53,6.93,1.12 +2019-08-17 07:00:00,7.78,10.03,18.38,23.41,7.3,0.73,16.08,24.37,13.37,0.51,6.63,0.1 +2019-08-17 08:00:00,8.46,13.66,17.29,23.05,7.07,0.81,14.31,24.5,14.41,0.52,6.65,0.35 +2019-08-17 09:00:00,8.49,11.8,15.88,22.36,7.07,0.81,13.94,22.82,13.7,0.5,6.65,0.0 +2019-08-17 10:00:00,8.49,13.0,16.64,23.21,7.39,0.81,13.34,24.52,15.29,0.68,7.3,0.93 +2019-08-17 11:00:00,8.41,14.23,17.92,29.4,7.43,0.84,13.67,26.66,16.62,0.87,9.3,0.41 +2019-08-17 12:00:00,9.82,17.77,17.83,26.05,7.47,0.83,13.76,26.8,16.71,1.14,10.73,1.05 +2019-08-17 13:00:00,10.06,23.65,17.96,26.46,7.26,0.83,14.43,25.87,15.83,1.58,12.51,3.23 +2019-08-17 14:00:00,9.84,28.27,18.83,27.37,7.21,0.84,17.57,25.53,14.31,2.09,12.0,1.1 +2019-08-17 15:00:00,9.97,25.79,19.75,27.88,7.69,0.9,17.21,26.79,14.95,1.51,11.61,2.22 +2019-08-17 16:00:00,8.3,19.3,20.61,26.77,7.49,0.83,19.28,26.73,14.36,1.54,10.73,1.04 +2019-08-17 17:00:00,8.49,16.62,20.95,25.54,7.43,0.79,20.39,26.18,14.16,1.99,11.84,1.74 +2019-08-17 18:00:00,9.11,16.56,19.64,25.97,7.74,0.82,17.24,22.67,12.64,1.15,11.13,1.62 +2019-08-17 19:00:00,7.47,19.07,21.77,25.03,7.57,0.89,15.01,24.19,13.45,1.26,12.98,2.15 +2019-08-17 20:00:00,7.56,15.75,22.66,26.47,7.6,0.91,13.37,26.22,15.33,1.61,15.4,3.13 +2019-08-17 21:00:00,11.74,16.63,22.05,26.73,8.29,0.92,12.86,26.88,16.34,1.71,15.14,2.48 +2019-08-17 22:00:00,12.36,15.96,21.16,25.63,8.1,1.05,12.86,25.91,15.9,1.54,12.96,2.68 +2019-08-17 23:00:00,11.0,14.95,21.09,25.27,8.23,0.94,13.24,26.97,17.02,1.14,10.05,1.95 +2019-08-18 00:00:00,10.24,12.65,19.68,25.02,8.25,0.84,13.83,24.96,15.86,0.97,8.38,1.72 +2019-08-18 01:00:00,8.68,10.81,19.17,25.98,8.25,0.74,14.17,25.5,16.52,0.81,8.57,1.34 +2019-08-18 02:00:00,8.59,9.76,19.13,29.81,8.16,0.76,14.78,25.21,16.15,0.8,9.97,1.75 +2019-08-18 03:00:00,7.6,8.38,19.74,27.12,8.85,0.75,13.98,26.67,17.93,0.73,8.1,1.03 +2019-08-18 04:00:00,9.1,11.32,16.89,27.44,8.15,0.78,13.68,21.85,13.47,0.78,8.01,1.54 +2019-08-18 05:00:00,9.46,11.45,16.7,25.81,8.22,0.77,14.14,19.38,13.91,0.7,9.61,1.83 +2019-08-18 06:00:00,10.1,14.04,16.91,24.32,8.2,0.79,14.83,20.51,14.67,0.57,16.57,1.95 +2019-08-18 07:00:00,10.54,16.6,18.88,22.21,8.29,0.79,16.53,25.0,19.31,0.62,18.83,2.72 +2019-08-18 08:00:00,9.04,15.72,19.29,21.53,8.36,0.82,17.24,24.96,19.66,0.56,16.52,0.98 +2019-08-18 09:00:00,11.7,14.0,21.23,21.84,8.16,0.86,17.01,27.1,20.13,0.74,15.99,0.83 +2019-08-18 10:00:00,13.13,19.48,18.64,22.53,8.4,0.91,15.5,22.53,15.84,0.91,13.48,1.4 +2019-08-18 11:00:00,13.81,22.18,17.09,21.98,8.43,0.86,17.52,18.44,16.32,1.43,14.83,0.55 +2019-08-18 12:00:00,12.87,23.03,16.05,22.9,8.4,0.9,19.36,17.84,11.76,1.39,16.79,0.63 +2019-08-18 13:00:00,12.14,27.73,19.4,23.4,8.2,0.85,21.4,20.06,15.62,1.42,15.2,1.25 +2019-08-18 14:00:00,15.01,32.79,15.74,22.58,7.93,0.87,22.68,17.37,11.38,1.52,13.32,1.33 +2019-08-18 15:00:00,15.54,34.06,15.93,22.15,8.36,0.81,23.97,17.12,11.03,1.34,12.77,1.4 +2019-08-18 16:00:00,12.27,32.9,16.46,21.79,8.33,0.82,25.34,17.29,10.94,1.36,13.95,1.75 +2019-08-18 17:00:00,13.08,30.69,16.64,21.31,8.2,0.84,26.86,17.44,11.25,1.32,14.95,2.9 +2019-08-18 18:00:00,14.29,33.42,19.4,20.66,8.1,0.89,26.87,19.55,11.99,1.18,15.96,2.06 +2019-08-18 19:00:00,18.15,46.37,24.29,20.8,8.14,0.97,20.76,21.0,10.25,1.55,19.43,2.95 +2019-08-18 20:00:00,25.75,56.79,31.4,22.15,8.92,1.28,15.46,28.61,15.13,2.15,24.64,7.01 +2019-08-18 21:00:00,32.57,69.15,33.22,21.39,9.58,1.61,13.9,36.61,24.08,3.14,31.61,6.48 +2019-08-18 22:00:00,36.55,83.4,35.83,21.37,10.46,1.94,16.32,56.24,42.79,4.1,37.88,0.82 +2019-08-18 23:00:00,42.04,94.02,34.67,21.94,11.33,2.05,16.65,58.19,45.45,4.46,40.54,9.21 +2019-08-19 00:00:00,42.19,97.33,36.37,21.84,10.14,2.04,23.43,62.12,49.23,4.38,40.2,7.67 +2019-08-19 01:00:00,44.32,99.7,35.82,24.0,9.47,1.76,29.96,60.99,47.78,4.26,38.32,7.02 +2019-08-19 02:00:00,45.54,93.9,32.84,25.62,9.33,1.58,22.0,58.29,45.96,3.87,35.83,3.75 +2019-08-19 03:00:00,41.93,89.1,31.72,26.0,9.44,1.56,21.96,61.45,50.44,3.57,35.12,2.08 +2019-08-19 04:00:00,42.87,89.01,31.63,25.95,9.09,1.46,20.23,60.56,49.73,3.39,31.49,1.61 +2019-08-19 05:00:00,44.75,86.16,27.94,23.76,9.04,1.43,19.92,56.14,47.14,3.3,30.55,1.82 +2019-08-19 06:00:00,45.74,89.32,28.17,22.72,9.05,1.45,19.33,59.63,51.76,3.06,29.86,4.4 +2019-08-19 07:00:00,46.45,92.06,29.97,23.34,9.03,1.48,17.5,63.52,55.61,3.13,27.92,2.54 +2019-08-19 08:00:00,47.83,99.85,31.54,24.4,8.69,1.35,15.7,53.7,42.1,2.8,27.25,2.57 +2019-08-19 09:00:00,53.15,101.2,28.83,25.39,8.6,1.29,17.89,42.39,30.29,2.59,20.38,1.82 +2019-08-19 10:00:00,52.18,94.74,24.43,24.0,8.19,1.27,24.98,33.29,21.86,2.22,16.1,0.89 +2019-08-19 11:00:00,39.52,73.61,24.96,24.36,7.8,0.9,33.74,29.54,16.94,2.84,16.4,1.38 +2019-08-19 12:00:00,32.05,64.9,22.55,27.65,7.88,0.82,40.2,26.9,15.26,2.81,15.32,1.05 +2019-08-19 13:00:00,28.1,63.24,19.92,27.56,8.0,0.83,47.05,17.22,8.04,2.07,18.43,3.39 +2019-08-19 14:00:00,27.76,65.62,20.89,26.61,7.7,0.92,47.01,16.63,6.68,1.72,14.55,1.71 +2019-08-19 15:00:00,25.59,68.16,21.38,25.53,7.77,0.91,43.34,17.41,7.14,2.03,15.15,0.97 +2019-08-19 16:00:00,21.35,63.27,20.95,27.02,7.92,0.92,42.67,17.17,7.1,1.4,15.68,1.89 +2019-08-19 17:00:00,20.52,66.93,21.59,27.83,8.14,0.89,39.37,17.75,7.49,1.21,23.22,0.23 +2019-08-19 18:00:00,20.38,66.42,23.81,24.74,8.07,0.97,36.53,19.43,8.01,1.53,24.03,2.09 +2019-08-19 19:00:00,22.7,68.98,27.56,25.09,8.05,1.13,30.28,21.31,7.79,1.85,24.51,1.79 +2019-08-19 20:00:00,30.15,85.1,35.85,29.6,8.28,1.4,22.68,28.17,10.54,2.41,47.23,0.73 +2019-08-19 21:00:00,43.06,106.28,37.36,28.08,8.76,1.56,19.5,31.86,14.26,3.19,53.82,6.52 +2019-08-19 22:00:00,54.41,122.21,35.62,27.25,8.88,1.68,19.35,34.45,18.6,3.43,49.04,0.68 +2019-08-19 23:00:00,52.62,119.98,34.54,26.5,9.18,1.87,18.8,41.77,27.96,3.47,36.13,1.52 +2019-08-20 00:00:00,52.95,120.28,32.1,26.71,9.85,1.96,19.51,49.33,38.59,3.79,35.98,1.74 +2019-08-20 01:00:00,57.55,133.71,29.85,26.56,10.04,1.85,21.65,54.49,45.63,3.88,38.77,0.75 +2019-08-20 02:00:00,56.71,128.23,28.51,30.12,9.78,1.74,24.09,52.12,43.98,4.23,38.62,1.1 +2019-08-20 03:00:00,54.08,113.24,26.48,28.65,9.86,1.52,22.53,48.57,41.25,3.46,36.24,14.65 +2019-08-20 04:00:00,53.93,106.76,25.13,30.16,9.68,1.42,20.22,41.98,34.73,3.51,34.51,1.1 +2019-08-20 05:00:00,58.6,103.16,22.75,28.59,9.66,1.21,19.2,34.99,27.28,2.8,29.65,1.11 +2019-08-20 06:00:00,55.56,95.63,22.69,28.26,8.65,1.13,20.05,31.94,23.27,2.39,23.16,0.52 +2019-08-20 07:00:00,50.22,93.77,21.52,27.05,7.83,1.14,16.03,32.54,24.8,2.08,18.07,0.4 +2019-08-20 08:00:00,44.85,98.0,21.81,25.77,7.01,1.16,16.37,31.14,23.07,1.8,14.73,12.1 +2019-08-20 09:00:00,44.77,95.82,21.1,27.51,6.98,1.11,17.65,27.83,19.61,1.59,13.92,15.13 +2019-08-20 10:00:00,45.89,96.24,21.01,30.98,7.49,1.08,22.23,24.85,16.12,1.76,14.49,9.75 +2019-08-20 11:00:00,50.15,100.99,24.11,35.53,7.73,1.07,29.43,23.49,12.64,1.84,15.92,0.6 +2019-08-20 12:00:00,44.81,89.26,20.56,38.68,8.29,1.0,35.08,17.32,7.49,1.91,19.08,2.05 +2019-08-20 13:00:00,33.74,73.53,21.54,43.89,7.81,0.88,37.51,17.73,7.54,2.18,18.83,1.58 +2019-08-20 14:00:00,32.08,60.11,20.53,41.73,7.53,0.82,39.17,19.12,8.0,2.19,25.07,0.0 +2019-08-20 15:00:00,20.28,56.09,20.36,37.85,6.93,0.86,39.88,19.17,7.9,1.77,19.58,1.74 +2019-08-20 16:00:00,17.95,66.53,20.68,40.28,6.74,0.87,45.4,19.81,8.9,1.44,19.06,1.96 +2019-08-20 17:00:00,18.98,70.52,21.87,37.11,6.86,0.94,49.23,20.85,8.67,1.38,17.37,5.69 +2019-08-20 18:00:00,22.91,74.38,27.91,34.32,7.3,1.02,49.55,24.05,8.7,1.51,22.74,0.28 +2019-08-20 19:00:00,27.62,82.1,30.89,32.73,7.52,1.12,40.99,26.04,9.25,1.86,25.66,0.48 +2019-08-20 20:00:00,32.13,94.59,37.2,33.44,7.59,1.31,29.5,32.69,12.25,2.31,25.36,0.71 +2019-08-20 21:00:00,39.2,113.12,43.01,37.13,7.99,1.37,25.32,37.44,14.13,2.9,32.68,7.86 +2019-08-20 22:00:00,43.16,113.88,41.93,36.12,7.88,1.46,21.08,37.9,15.86,3.08,29.17,1.18 +2019-08-20 23:00:00,43.56,117.1,41.11,33.63,7.9,1.47,20.13,39.42,18.33,2.88,30.33,0.2 +2019-08-21 00:00:00,44.54,117.14,38.52,31.15,7.92,1.43,18.22,40.65,21.12,2.87,27.9,1.9 +2019-08-21 01:00:00,47.37,119.08,37.57,30.7,7.94,1.29,17.14,39.58,20.26,3.16,25.66,0.86 +2019-08-21 02:00:00,51.92,112.54,34.18,34.14,7.93,1.14,19.17,33.13,15.24,2.41,25.87,7.85 +2019-08-21 03:00:00,51.38,101.78,31.09,32.74,8.27,1.18,18.18,31.91,15.72,2.13,21.86,3.85 +2019-08-21 04:00:00,52.63,103.05,30.92,32.7,7.67,1.2,16.96,34.5,18.87,2.47,21.23,17.2 +2019-08-21 05:00:00,54.42,106.43,30.14,32.57,7.66,1.18,16.53,38.47,24.02,2.19,21.87,9.73 +2019-08-21 06:00:00,59.1,112.82,29.75,31.85,7.62,1.1,16.69,38.31,24.06,1.88,15.49,6.02 +2019-08-21 07:00:00,59.15,116.74,29.97,31.24,7.52,1.22,17.58,40.28,26.53,1.94,14.52,0.0 +2019-08-21 08:00:00,59.29,132.27,28.59,30.78,7.38,1.3,17.76,36.03,22.56,2.17,13.59,6.69 +2019-08-21 09:00:00,49.95,141.56,27.57,29.65,7.66,1.28,24.2,32.24,19.19,1.97,16.67,14.1 +2019-08-21 10:00:00,45.17,143.89,24.33,32.57,7.59,1.14,32.9,27.46,14.51,2.14,15.08,2.44 +2019-08-21 11:00:00,42.18,147.5,25.09,33.83,7.3,1.04,40.03,25.17,10.51,2.06,13.96,0.96 +2019-08-21 12:00:00,38.78,149.02,24.64,38.69,7.33,0.85,45.91,21.91,8.42,1.89,15.98,0.0 +2019-08-21 13:00:00,42.76,140.02,25.59,38.0,7.84,0.8,48.88,22.63,8.56,1.76,18.34,0.16 +2019-08-21 14:00:00,45.08,136.33,26.24,38.66,7.61,0.83,50.67,21.8,7.46,1.75,17.1,0.3 +2019-08-21 15:00:00,41.07,132.96,27.48,37.84,7.53,0.88,50.73,22.36,7.03,1.61,14.82,1.82 +2019-08-21 16:00:00,37.94,132.54,27.2,41.14,7.94,0.88,51.05,22.32,7.29,1.86,19.6,7.97 +2019-08-21 17:00:00,35.2,128.81,28.8,41.7,7.67,0.82,52.51,23.45,7.63,1.52,29.24,6.27 +2019-08-21 18:00:00,33.32,124.29,32.18,38.01,7.42,0.84,50.0,26.55,8.52,2.03,33.56,2.32 +2019-08-21 19:00:00,33.41,120.7,36.98,32.78,7.73,0.95,42.53,30.57,9.72,2.3,22.21,4.87 +2019-08-21 20:00:00,38.52,127.79,44.01,31.93,7.94,1.22,31.09,33.78,9.44,2.91,30.38,5.62 +2019-08-21 21:00:00,43.68,143.9,47.39,32.46,8.25,1.43,26.71,37.15,11.53,3.71,50.85,3.67 +2019-08-21 22:00:00,52.77,155.43,48.49,32.38,8.7,1.67,22.22,44.72,20.3,4.04,38.3,3.84 +2019-08-21 23:00:00,60.91,160.39,47.52,33.07,9.11,1.61,20.55,49.28,25.39,4.02,38.25,3.52 +2019-08-22 00:00:00,59.88,157.44,44.53,33.01,8.27,1.55,18.77,48.45,25.25,3.23,28.34,2.76 +2019-08-22 01:00:00,55.4,143.77,40.83,33.71,7.82,1.12,17.6,40.54,19.59,3.3,25.11,4.42 +2019-08-22 02:00:00,50.28,128.15,41.19,38.82,8.16,1.05,17.54,45.84,25.35,3.26,20.84,2.21 +2019-08-22 03:00:00,48.87,128.44,37.61,35.5,9.45,1.04,16.91,45.9,27.63,3.74,21.02,1.84 +2019-08-22 04:00:00,48.9,123.52,37.76,32.97,7.95,0.84,17.07,39.38,19.63,3.01,22.78,1.32 +2019-08-22 05:00:00,41.35,104.97,39.13,31.27,7.84,0.7,16.49,34.78,13.9,1.74,16.07,1.27 +2019-08-22 06:00:00,29.96,83.3,34.48,31.61,7.75,0.71,14.22,33.73,15.84,1.47,12.01,1.24 +2019-08-22 07:00:00,29.75,90.42,34.37,29.34,8.06,0.94,14.79,40.2,23.39,1.82,12.52,1.17 +2019-08-22 08:00:00,34.75,114.91,35.85,29.72,8.31,1.06,16.34,46.4,29.38,1.79,13.05,1.28 +2019-08-22 09:00:00,37.4,138.08,36.45,30.63,8.61,1.03,20.4,41.76,23.63,2.03,14.38,1.24 +2019-08-22 10:00:00,39.37,134.73,35.31,35.4,8.59,0.98,30.01,33.28,14.6,2.2,16.22,1.33 +2019-08-22 11:00:00,42.18,143.25,33.16,39.81,8.22,0.94,42.06,28.32,10.34,2.2,18.69,1.07 +2019-08-22 12:00:00,40.31,139.74,30.36,39.46,8.02,0.87,49.37,25.33,8.79,2.2,16.11,1.39 +2019-08-22 13:00:00,39.29,131.95,28.22,38.51,7.98,0.78,52.33,23.54,8.68,2.13,16.08,1.41 +2019-08-22 14:00:00,36.95,121.18,27.57,39.01,7.93,0.75,51.58,22.13,6.89,1.89,17.99,1.41 +2019-08-22 15:00:00,35.95,122.73,30.87,36.74,7.67,0.73,44.73,24.67,7.56,2.05,26.54,1.35 +2019-08-22 16:00:00,32.25,117.56,39.01,33.8,7.45,0.82,36.23,32.47,11.49,2.14,27.97,1.31 +2019-08-22 17:00:00,26.19,74.19,49.98,31.22,7.63,1.17,23.89,43.83,17.41,2.91,43.3,1.26 +2019-08-22 18:00:00,33.41,104.28,56.53,32.19,8.56,1.49,22.84,56.73,28.74,3.74,55.52,1.27 +2019-08-22 19:00:00,45.67,134.43,59.35,33.86,9.06,1.68,23.82,57.38,27.64,5.08,56.43,1.25 +2019-08-22 20:00:00,54.76,156.55,60.95,35.16,9.23,1.95,21.5,61.03,31.0,6.1,56.38,2.12 +2019-08-22 21:00:00,64.87,179.96,60.68,34.24,9.47,2.31,18.67,73.13,45.03,5.49,55.39,2.09 +2019-08-22 22:00:00,66.38,180.82,60.11,33.43,9.73,2.37,18.05,83.2,57.85,5.59,52.62,1.83 +2019-08-22 23:00:00,65.67,177.29,58.83,33.33,10.08,2.24,17.69,83.44,61.12,5.37,51.06,2.53 +2019-08-23 00:00:00,61.9,167.9,55.49,34.9,9.74,1.8,17.92,75.54,53.96,4.69,40.98,2.88 +2019-08-23 01:00:00,60.32,152.93,49.96,33.56,8.17,1.38,17.63,66.74,45.68,4.04,32.09,2.56 +2019-08-23 02:00:00,62.17,145.8,44.19,39.5,8.13,1.25,18.59,62.25,44.11,3.71,29.25,1.91 +2019-08-23 03:00:00,60.42,141.37,40.72,37.0,8.86,1.33,17.44,67.19,52.21,3.75,29.3,1.99 +2019-08-23 04:00:00,58.71,134.0,44.85,34.72,8.46,1.19,17.13,67.89,51.53,3.8,33.77,2.07 +2019-08-23 05:00:00,55.58,125.66,37.78,32.5,8.25,1.05,16.64,61.91,46.57,3.12,31.5,2.04 +2019-08-23 06:00:00,52.13,116.72,35.87,33.65,8.67,1.07,16.34,66.4,54.23,2.88,27.97,1.51 +2019-08-23 07:00:00,54.43,124.44,37.07,31.99,8.75,1.26,16.31,76.03,64.24,2.82,28.97,1.25 +2019-08-23 08:00:00,59.31,154.34,44.2,32.5,9.27,1.35,17.66,76.17,61.74,3.37,28.34,1.25 +2019-08-23 09:00:00,60.23,172.4,44.52,33.98,8.69,1.17,22.15,54.44,34.07,2.97,25.63,1.18 +2019-08-23 10:00:00,53.58,154.03,40.95,38.12,7.99,1.0,32.28,41.86,20.89,2.49,20.35,1.68 +2019-08-23 11:00:00,46.15,146.73,32.69,35.52,7.38,0.83,44.2,32.9,15.01,2.44,19.64,1.81 +2019-08-23 12:00:00,42.59,143.95,29.47,36.11,7.38,0.78,48.45,29.47,12.92,2.26,18.88,1.56 +2019-08-23 13:00:00,43.83,136.16,27.93,41.49,7.69,0.77,51.88,25.71,10.15,2.35,16.86,1.53 +2019-08-23 14:00:00,41.11,138.48,28.32,39.18,7.3,0.84,49.47,25.47,9.86,2.13,16.99,1.49 +2019-08-23 15:00:00,39.03,134.41,28.56,39.53,7.44,0.81,48.7,25.65,10.11,1.62,19.53,1.47 +2019-08-23 16:00:00,39.38,130.24,30.13,39.72,7.21,0.77,44.15,25.33,8.91,2.07,19.89,1.19 +2019-08-23 17:00:00,36.19,112.94,35.47,39.48,7.0,0.81,37.52,27.99,9.32,2.08,25.84,1.46 +2019-08-23 18:00:00,35.42,109.42,36.26,38.82,7.18,0.93,38.57,32.14,13.32,2.34,36.35,1.43 +2019-08-23 19:00:00,33.88,103.86,40.42,36.09,7.74,1.09,31.47,35.1,13.72,2.81,40.39,1.44 +2019-08-23 20:00:00,39.3,115.21,47.03,36.82,8.31,1.61,22.91,47.42,23.53,4.1,45.2,1.41 +2019-08-23 21:00:00,50.19,161.45,52.05,39.15,9.4,2.39,20.07,75.68,53.91,5.54,57.15,1.35 +2019-08-23 22:00:00,61.98,196.34,53.66,35.0,10.61,2.81,19.57,99.44,82.45,5.51,61.79,1.44 +2019-08-23 23:00:00,63.95,207.42,50.18,34.26,10.94,2.93,18.63,109.87,96.59,5.35,61.61,1.65 +2019-08-24 00:00:00,64.53,204.37,49.24,36.76,10.49,2.7,18.81,110.25,97.78,5.23,51.29,1.52 +2019-08-24 01:00:00,67.1,199.73,48.28,39.51,9.65,2.41,20.0,105.44,93.02,4.92,50.91,1.55 +2019-08-24 02:00:00,70.38,178.4,45.5,44.73,9.66,2.18,22.88,103.63,93.89,5.45,49.54,1.52 +2019-08-24 03:00:00,61.96,169.6,41.56,43.62,10.53,2.12,20.8,107.47,100.45,4.4,47.38,1.5 +2019-08-24 04:00:00,63.0,158.85,41.14,40.61,9.37,1.81,19.01,96.99,88.79,4.17,43.64,1.66 +2019-08-24 05:00:00,65.47,144.61,40.15,39.06,9.97,1.68,17.96,94.59,86.27,3.63,39.65,1.61 +2019-08-24 06:00:00,69.55,150.01,41.79,39.12,10.25,1.62,21.98,97.95,89.8,3.42,37.62,1.47 +2019-08-24 07:00:00,66.05,161.4,40.28,39.07,10.12,1.71,18.06,93.25,84.99,3.55,39.87,1.47 +2019-08-24 08:00:00,67.82,169.11,45.19,40.0,9.57,1.58,18.94,77.1,61.88,3.78,32.33,1.36 +2019-08-24 09:00:00,77.85,186.93,47.87,40.91,9.27,1.47,25.62,58.22,34.7,3.32,29.05,1.49 +2019-08-24 10:00:00,80.55,197.08,46.84,44.02,8.57,1.31,35.72,48.09,20.73,3.06,27.41,1.68 +2019-08-24 11:00:00,78.92,188.93,46.22,44.43,7.9,1.08,44.0,40.77,15.84,2.83,22.43,1.52 +2019-08-24 12:00:00,64.64,167.6,37.68,43.67,7.78,1.08,41.46,35.31,14.66,2.71,29.92,1.4 +2019-08-24 13:00:00,52.67,141.16,37.69,44.38,7.8,1.02,40.23,30.93,10.2,2.7,29.43,1.36 +2019-08-24 14:00:00,50.41,119.45,43.96,44.47,7.83,1.07,45.33,33.88,9.72,3.48,30.66,1.41 +2019-08-24 15:00:00,51.43,113.36,35.56,46.05,7.81,1.11,43.55,29.93,9.98,3.47,29.84,1.5 +2019-08-24 16:00:00,53.62,118.43,33.94,42.51,8.04,1.0,43.38,26.87,7.96,3.11,34.47,1.52 +2019-08-24 17:00:00,47.29,112.66,30.45,42.39,7.57,0.91,36.57,25.25,8.73,2.78,41.33,1.45 +2019-08-24 18:00:00,35.54,93.38,36.88,42.22,7.71,0.98,31.89,30.05,9.85,3.05,37.83,1.4 +2019-08-24 19:00:00,40.39,108.23,48.98,38.52,8.0,1.18,27.08,39.06,12.27,3.98,39.92,1.45 +2019-08-24 20:00:00,49.92,133.89,45.5,40.34,8.25,1.35,22.21,36.02,12.0,4.52,42.43,1.46 +2019-08-24 21:00:00,58.16,134.38,42.47,40.39,8.42,1.39,20.68,35.0,12.37,4.26,35.39,1.7 +2019-08-24 22:00:00,61.82,131.3,38.77,38.91,8.21,1.28,19.95,33.26,12.23,3.99,30.52,1.65 +2019-08-24 23:00:00,57.98,112.92,36.18,36.94,8.04,1.13,20.02,31.31,11.45,3.14,22.64,1.75 +2019-08-25 00:00:00,45.38,95.02,35.91,36.94,7.96,1.03,19.66,29.85,10.25,2.56,17.64,1.74 +2019-08-25 01:00:00,40.02,85.63,34.76,37.86,7.62,0.97,19.33,28.75,9.99,2.32,17.07,1.58 +2019-08-25 02:00:00,34.24,75.91,33.65,41.01,7.34,0.96,18.87,28.92,10.88,2.27,16.11,1.18 +2019-08-25 03:00:00,35.96,76.98,32.6,36.03,8.43,0.97,18.03,30.38,12.37,2.12,17.21,1.26 +2019-08-25 04:00:00,37.34,78.42,32.66,35.02,7.07,0.91,16.1,29.68,11.94,2.16,16.62,1.3 +2019-08-25 05:00:00,38.0,75.54,35.55,33.07,7.17,0.88,15.91,30.76,11.83,2.01,15.82,1.25 +2019-08-25 06:00:00,39.05,75.23,31.52,34.05,7.39,0.88,15.62,28.35,11.58,1.94,16.15,1.28 +2019-08-25 07:00:00,39.51,73.99,30.09,32.25,7.61,0.89,15.11,29.0,12.87,1.88,16.65,1.18 +2019-08-25 08:00:00,37.62,70.11,29.31,32.38,8.08,0.87,17.09,28.28,12.33,1.67,15.77,1.24 +2019-08-25 09:00:00,37.24,67.02,27.15,33.44,7.97,0.83,20.69,25.45,10.68,1.62,12.78,1.21 +2019-08-25 10:00:00,35.35,68.11,26.67,34.23,7.93,0.83,23.11,24.31,9.78,1.47,11.54,1.24 +2019-08-25 11:00:00,32.8,68.42,28.52,35.13,8.09,0.88,25.41,23.93,8.59,1.58,12.06,1.28 +2019-08-25 12:00:00,32.43,69.9,26.77,34.77,8.26,0.87,28.91,22.47,8.37,1.56,12.55,1.24 +2019-08-25 13:00:00,34.51,79.02,26.84,37.88,8.34,0.85,37.67,24.29,10.4,1.46,11.47,0.83 +2019-08-25 14:00:00,39.87,76.74,34.95,36.65,8.23,0.82,46.6,24.6,9.12,1.48,10.75,0.25 +2019-08-25 15:00:00,38.64,75.9,26.16,36.09,8.29,0.83,56.62,20.63,6.49,1.4,10.82,0.34 +2019-08-25 16:00:00,35.96,80.07,24.43,36.67,8.79,0.76,44.26,19.53,5.83,1.37,14.16,0.23 +2019-08-25 17:00:00,24.3,68.95,28.09,35.02,9.04,0.78,29.65,22.95,7.83,1.44,20.61,0.2 +2019-08-25 18:00:00,17.22,32.25,31.97,36.94,9.83,0.94,25.37,28.37,11.51,1.91,34.89,0.64 +2019-08-25 19:00:00,18.41,38.13,34.6,31.82,8.22,0.99,22.69,29.88,11.54,2.71,34.51,6.0 +2019-08-25 20:00:00,21.6,42.75,41.5,32.13,8.74,1.12,18.39,35.85,14.3,2.86,26.72,6.99 +2019-08-25 21:00:00,28.41,51.37,37.78,34.37,9.18,1.24,15.89,34.88,15.58,2.9,29.66,3.13 +2019-08-25 22:00:00,32.6,53.83,33.86,32.7,9.07,1.12,15.06,32.79,14.72,2.8,23.08,1.16 +2019-08-25 23:00:00,27.3,48.33,35.68,31.28,8.83,1.08,15.31,35.5,17.28,2.33,28.04,1.62 +2019-08-26 00:00:00,25.1,56.47,39.38,32.11,8.41,1.08,16.06,37.64,17.71,2.13,26.06,3.54 +2019-08-26 01:00:00,26.03,55.11,39.68,31.17,8.13,0.97,17.26,37.43,17.43,2.14,20.17,5.05 +2019-08-26 02:00:00,23.87,49.37,32.14,34.71,7.92,0.87,18.41,32.03,16.17,2.06,19.36,0.67 +2019-08-26 03:00:00,24.95,53.98,30.96,31.48,8.62,0.89,15.94,34.8,19.65,2.05,18.04,2.72 +2019-08-26 04:00:00,26.68,55.29,30.12,30.94,7.76,0.82,15.34,32.8,18.19,2.22,18.24,2.5 +2019-08-26 05:00:00,33.32,56.19,29.76,28.67,7.87,0.82,15.48,29.59,14.98,2.22,18.42,2.35 +2019-08-26 06:00:00,30.33,53.86,27.0,29.21,8.04,0.85,14.8,30.52,17.85,2.17,19.32,2.27 +2019-08-26 07:00:00,26.85,53.93,27.64,27.08,8.33,0.91,15.03,33.59,20.85,2.11,18.85,2.36 +2019-08-26 08:00:00,28.58,68.26,27.32,27.42,8.52,0.97,17.2,32.92,19.72,2.08,17.54,0.43 +2019-08-26 09:00:00,28.41,66.77,26.49,28.22,8.82,0.9,21.25,27.56,14.73,1.83,13.92,0.1 +2019-08-26 10:00:00,22.84,62.15,28.71,27.86,8.71,0.86,25.37,25.61,11.16,1.48,11.4,0.18 +2019-08-26 11:00:00,18.78,63.97,29.32,31.66,8.34,0.87,31.06,25.25,9.21,1.52,17.95,0.14 +2019-08-26 12:00:00,18.33,62.43,29.22,29.29,7.85,0.74,33.7,25.82,9.77,1.7,18.01,0.25 +2019-08-26 13:00:00,17.71,63.32,25.65,31.72,7.86,0.72,35.67,22.58,8.16,1.79,18.05,0.37 +2019-08-26 14:00:00,17.4,63.75,24.19,30.67,7.89,0.77,37.17,20.03,6.31,1.8,18.29,0.18 +2019-08-26 15:00:00,17.62,57.08,22.29,29.84,8.35,0.79,36.4,20.97,9.33,2.44,18.51,0.2 +2019-08-26 16:00:00,17.91,59.25,30.77,28.58,8.29,0.85,34.6,26.46,9.41,1.7,23.88,0.03 +2019-08-26 17:00:00,17.46,53.47,25.41,28.92,8.62,0.83,38.49,22.74,8.28,1.65,21.84,0.08 +2019-08-26 18:00:00,19.91,62.85,27.28,29.1,9.31,0.86,36.45,22.45,7.63,1.77,28.22,0.15 +2019-08-26 19:00:00,20.97,73.06,37.41,29.69,8.91,1.01,30.82,31.07,11.07,2.19,29.3,0.08 +2019-08-26 20:00:00,23.99,87.12,43.57,28.87,8.81,1.31,19.54,40.25,18.89,2.9,39.58,0.09 +2019-08-26 21:00:00,32.84,114.22,42.5,31.18,9.32,1.53,15.54,45.2,24.08,3.54,39.41,0.17 +2019-08-26 22:00:00,36.98,121.39,41.98,29.61,10.01,1.72,16.65,52.28,32.91,3.98,41.71,0.44 +2019-08-26 23:00:00,44.69,132.87,39.73,29.25,10.57,1.8,19.35,55.48,37.89,4.37,40.66,0.47 +2019-08-27 00:00:00,46.8,129.39,40.15,28.6,11.24,1.58,25.59,50.71,31.61,4.0,39.4,0.48 +2019-08-27 01:00:00,46.64,121.42,39.26,28.22,9.99,1.28,26.67,50.44,31.67,3.5,35.79,0.88 +2019-08-27 02:00:00,44.65,107.76,36.52,31.48,9.17,1.16,34.0,47.19,28.89,2.86,31.47,0.12 +2019-08-27 03:00:00,40.7,100.26,37.91,31.0,9.12,1.08,29.02,49.43,30.68,2.4,28.51,0.48 +2019-08-27 04:00:00,38.36,93.72,35.79,29.45,8.85,1.05,23.87,47.37,30.15,2.33,29.41,0.45 +2019-08-27 05:00:00,40.23,92.13,33.11,28.7,8.98,1.05,25.38,49.28,34.08,2.43,33.67,0.24 +2019-08-27 06:00:00,41.93,97.15,30.94,28.0,9.13,1.11,26.37,57.71,45.12,2.32,32.92,0.11 +2019-08-27 07:00:00,51.54,120.77,31.23,27.73,11.17,1.33,34.27,61.73,50.75,3.04,33.31,1.52 +2019-08-27 08:00:00,57.5,140.34,38.43,30.08,12.67,1.28,41.45,55.48,37.8,3.16,34.01,0.33 +2019-08-27 09:00:00,62.03,144.19,34.62,28.42,12.52,1.11,47.07,35.61,17.46,2.43,29.54,0.7 +2019-08-27 10:00:00,42.52,104.03,33.91,29.26,11.18,0.94,47.45,30.63,12.33,2.06,22.73,0.48 +2019-08-27 11:00:00,32.66,85.57,27.61,33.21,10.42,0.85,49.02,25.45,10.98,1.75,22.94,0.16 +2019-08-27 12:00:00,29.21,82.92,25.33,31.81,9.9,0.79,48.34,21.81,7.55,2.03,15.63,0.15 +2019-08-27 13:00:00,30.6,90.2,23.92,34.68,9.62,0.9,51.92,19.99,6.5,2.33,17.23,0.18 +2019-08-27 14:00:00,36.23,87.75,24.01,33.48,9.53,0.85,51.7,19.82,6.23,2.36,16.84,0.08 +2019-08-27 15:00:00,29.44,84.8,23.58,32.99,9.16,1.04,55.57,19.8,6.38,2.48,18.1,0.18 +2019-08-27 16:00:00,29.31,77.87,23.77,31.36,8.94,0.87,54.44,19.44,5.83,2.17,21.67,0.13 +2019-08-27 17:00:00,29.56,75.79,25.73,31.72,8.7,0.84,53.36,20.26,5.59,2.82,27.65,0.06 +2019-08-27 18:00:00,28.6,77.28,29.6,31.38,8.96,0.87,45.04,23.07,6.19,2.6,23.91,0.09 +2019-08-27 19:00:00,28.26,85.67,39.44,34.26,9.19,1.06,32.91,30.39,8.58,2.5,21.54,0.0 +2019-08-27 20:00:00,35.11,119.87,52.17,40.08,9.52,1.44,21.23,44.63,17.45,3.36,42.56,0.11 +2019-08-27 21:00:00,45.82,152.81,49.82,42.07,10.05,1.79,19.35,51.3,26.62,4.29,48.63,0.52 +2019-08-27 22:00:00,55.57,166.5,45.84,35.48,10.88,1.93,17.78,53.59,31.68,4.65,44.1,4.41 +2019-08-27 23:00:00,53.06,153.55,44.94,34.24,11.25,1.87,25.76,58.56,37.62,4.3,40.28,8.21 +2019-08-28 00:00:00,55.2,145.69,41.71,33.87,10.22,1.68,24.87,56.21,36.73,3.92,41.56,11.42 +2019-08-28 01:00:00,52.2,135.89,38.94,32.28,9.74,1.38,30.21,52.42,33.88,3.26,36.39,5.42 +2019-08-28 02:00:00,48.91,121.64,37.57,36.15,9.65,1.38,28.63,52.37,34.36,2.96,31.78,6.6 +2019-08-28 03:00:00,51.58,118.39,39.76,34.89,12.91,1.1,27.15,51.94,32.75,3.05,31.65,8.27 +2019-08-28 04:00:00,51.14,109.73,35.23,34.36,12.13,1.13,26.6,49.1,32.51,2.94,31.05,10.41 +2019-08-28 05:00:00,53.82,115.16,33.78,33.3,10.37,1.1,29.82,47.15,31.35,2.83,31.93,9.61 +2019-08-28 06:00:00,52.77,115.24,32.81,32.15,10.21,1.03,32.45,44.27,28.15,2.58,26.44,9.3 +2019-08-28 07:00:00,57.06,116.66,32.58,30.82,10.06,1.06,31.11,45.34,29.59,2.19,24.88,9.28 +2019-08-28 08:00:00,54.59,126.34,33.84,33.17,10.41,1.13,33.63,41.4,24.55,2.25,21.81,4.26 +2019-08-28 09:00:00,54.27,126.91,29.91,33.26,9.51,1.02,33.69,30.02,14.25,1.93,16.83,0.2 +2019-08-28 10:00:00,41.1,99.72,30.96,32.51,9.08,0.96,36.94,28.77,12.15,1.72,11.98,0.14 +2019-08-28 11:00:00,31.41,91.31,26.99,37.78,8.96,0.85,46.09,24.33,10.14,1.64,12.57,0.42 +2019-08-28 12:00:00,29.89,77.46,30.51,37.62,9.26,0.84,52.15,25.62,13.04,1.82,15.58,1.94 +2019-08-28 13:00:00,30.12,76.74,25.77,39.04,9.9,0.8,50.0,23.02,8.04,2.28,16.63,1.96 +2019-08-28 14:00:00,33.65,81.46,24.61,38.76,9.58,0.79,50.05,22.28,7.87,1.88,18.06,0.0 +2019-08-28 15:00:00,31.93,74.28,24.55,36.96,9.05,0.76,46.67,23.14,8.48,1.96,18.11,0.0 +2019-08-28 16:00:00,26.54,67.55,27.47,35.13,8.6,0.78,45.4,26.49,9.89,2.34,17.21,7.74 +2019-08-28 17:00:00,28.44,70.74,33.08,34.91,8.95,0.79,42.33,31.15,10.16,2.53,23.17,4.65 +2019-08-28 18:00:00,27.99,73.15,34.33,34.94,9.59,0.84,39.4,30.11,10.02,2.38,21.68,0.0 +2019-08-28 19:00:00,29.65,82.06,38.1,35.27,8.75,0.99,32.3,32.69,11.42,2.32,17.66,0.18 +2019-08-28 20:00:00,35.04,96.23,43.69,33.55,8.93,1.22,24.58,36.94,13.01,2.74,18.5,0.36 +2019-08-28 21:00:00,41.33,109.5,45.24,36.28,8.61,1.31,18.21,38.16,13.44,3.37,34.48,0.66 +2019-08-28 22:00:00,44.62,125.39,46.28,37.69,8.35,1.39,19.39,39.84,15.02,3.37,27.21,0.21 +2019-08-28 23:00:00,45.67,115.12,43.19,34.08,8.45,1.31,22.38,37.76,15.42,2.66,22.89,0.17 +2019-08-29 00:00:00,38.7,101.86,39.44,30.15,8.75,1.19,19.01,40.05,19.97,2.2,21.25,0.07 +2019-08-29 01:00:00,40.92,101.06,38.05,31.47,8.51,0.99,20.45,39.17,19.31,2.02,20.84,0.24 +2019-08-29 02:00:00,41.84,98.16,34.52,35.33,8.06,0.89,22.51,32.3,14.44,2.29,17.62,0.03 +2019-08-29 03:00:00,43.55,91.01,33.87,35.3,9.03,0.8,18.81,27.53,9.13,2.36,13.04,1.2 +2019-08-29 04:00:00,39.92,79.4,31.31,32.79,7.66,0.8,15.97,27.11,10.02,1.85,11.5,1.22 +2019-08-29 05:00:00,39.24,80.17,29.49,31.92,7.8,0.79,18.11,26.28,10.31,1.75,11.54,0.12 +2019-08-29 06:00:00,36.42,71.86,28.74,30.85,7.87,0.83,19.33,26.96,11.87,1.65,12.41,0.31 +2019-08-29 07:00:00,37.9,78.39,30.17,30.19,8.11,0.96,16.8,31.36,16.13,1.78,14.0,0.76 +2019-08-29 08:00:00,42.7,101.0,30.98,30.9,8.7,1.04,27.55,32.05,16.47,1.74,12.76,0.64 +2019-08-29 09:00:00,42.32,107.15,28.54,30.04,8.46,0.98,30.41,27.53,12.42,1.62,11.77,0.59 +2019-08-29 10:00:00,35.11,95.45,28.96,30.19,8.11,0.9,30.63,27.49,11.87,1.46,9.71,0.4 +2019-08-29 11:00:00,30.27,92.76,24.53,32.59,7.96,0.85,38.78,21.57,8.22,1.45,9.78,0.38 +2019-08-29 12:00:00,28.92,85.72,24.85,33.5,7.97,0.86,46.53,20.1,7.01,1.41,11.26,0.11 +2019-08-29 13:00:00,28.84,80.73,23.05,33.48,8.21,0.86,54.22,21.67,13.9,1.49,12.55,0.05 +2019-08-29 14:00:00,30.03,83.35,22.37,31.42,8.1,0.81,57.99,19.69,7.25,1.49,15.22,0.08 +2019-08-29 15:00:00,31.5,84.05,24.52,31.67,8.76,0.83,58.96,23.01,8.82,1.72,16.78,0.0 +2019-08-29 16:00:00,27.86,84.62,24.72,32.63,9.48,0.89,54.88,21.83,7.6,1.88,17.54,0.0 +2019-08-29 17:00:00,27.35,80.32,26.09,33.67,8.86,0.81,48.9,22.16,6.92,1.8,19.47,0.15 +2019-08-29 18:00:00,26.64,81.08,27.61,33.49,7.66,0.93,38.65,22.36,6.75,1.71,21.51,0.0 +2019-08-29 19:00:00,26.62,88.32,33.45,37.37,7.7,1.0,28.68,27.47,9.02,2.31,24.98,0.14 +2019-08-29 20:00:00,30.76,104.86,35.7,35.83,7.99,1.07,23.72,31.62,12.23,2.21,20.69,0.3 +2019-08-29 21:00:00,29.58,107.8,37.72,33.32,8.08,1.15,20.5,31.65,11.5,2.49,20.24,1.45 +2019-08-29 22:00:00,29.77,104.7,37.67,32.56,8.01,1.11,16.23,30.06,10.31,2.31,18.04,1.06 +2019-08-29 23:00:00,27.42,83.16,38.13,31.81,7.97,1.07,15.71,34.32,15.0,2.13,15.62,1.17 +2019-08-30 00:00:00,29.07,76.69,35.21,31.07,8.04,0.98,18.47,31.29,13.12,1.92,15.56,1.49 +2019-08-30 01:00:00,33.13,75.38,32.5,30.97,8.2,0.9,21.31,30.21,13.43,1.92,16.36,1.41 +2019-08-30 02:00:00,35.02,72.89,29.38,34.12,8.19,0.84,19.01,26.64,11.43,1.86,16.06,1.14 +2019-08-30 03:00:00,32.23,72.71,29.89,33.92,9.48,0.79,22.95,26.95,11.71,1.61,15.93,1.17 +2019-08-30 04:00:00,34.67,81.29,30.62,31.49,8.61,0.88,21.07,29.61,14.49,1.51,15.04,0.69 +2019-08-30 05:00:00,36.38,75.93,27.38,30.24,7.74,0.84,17.9,28.6,14.1,1.42,13.11,0.52 +2019-08-30 06:00:00,34.08,70.84,27.47,29.31,7.43,0.82,17.26,28.23,14.39,1.45,14.05,0.5 +2019-08-30 07:00:00,36.51,82.68,27.67,30.67,8.76,0.93,23.38,32.32,19.58,1.74,16.56,1.92 +2019-08-30 08:00:00,42.6,105.94,28.43,31.71,8.91,1.02,31.56,29.96,16.25,1.98,20.65,2.7 +2019-08-30 09:00:00,52.07,120.2,30.33,31.87,9.61,1.03,47.09,28.9,13.31,1.9,19.45,0.55 +2019-08-30 10:00:00,52.69,132.54,30.63,32.27,10.28,1.06,47.95,27.89,11.26,1.88,17.82,0.46 +2019-08-30 11:00:00,50.95,121.95,26.81,32.97,10.84,1.02,52.85,22.99,8.75,1.7,16.09,0.39 +2019-08-30 12:00:00,47.04,118.89,25.85,34.76,10.83,1.03,62.96,22.32,7.95,1.97,15.6,0.25 +2019-08-30 13:00:00,43.98,108.82,23.87,33.54,12.96,0.88,68.9,20.57,6.79,1.61,16.39,0.24 +2019-08-30 14:00:00,43.61,105.89,23.12,33.69,9.86,0.84,70.48,19.39,6.04,1.51,13.93,0.02 +2019-08-30 15:00:00,48.01,106.62,24.96,37.15,10.24,0.82,66.67,20.55,6.1,1.98,14.82,0.0 +2019-08-30 16:00:00,46.21,109.95,26.89,35.99,9.9,0.84,67.26,22.93,7.3,1.54,16.89,0.0 +2019-08-30 17:00:00,47.91,110.82,30.3,35.82,9.83,0.84,69.46,25.27,8.02,1.53,14.85,0.0 +2019-08-30 18:00:00,49.51,117.31,35.28,37.72,9.36,1.02,54.86,31.06,11.61,2.15,16.21,0.14 +2019-08-30 19:00:00,42.49,118.18,40.14,36.42,8.86,1.1,38.95,36.11,14.56,2.25,21.38,0.06 +2019-08-30 20:00:00,41.5,127.12,47.88,37.15,8.94,1.38,28.61,44.01,18.62,2.42,21.1,0.61 +2019-08-30 21:00:00,47.15,134.22,49.3,36.17,8.56,1.44,27.24,42.16,15.18,2.95,31.46,0.73 +2019-08-30 22:00:00,59.73,144.76,48.72,34.79,9.42,1.55,22.94,45.79,19.37,2.51,27.13,0.72 +2019-08-30 23:00:00,57.55,144.73,45.83,34.86,8.99,1.59,22.75,49.85,26.03,2.91,26.18,1.36 +2019-08-31 00:00:00,57.69,140.07,42.84,32.82,8.97,1.51,22.03,46.99,24.8,2.39,25.16,1.31 +2019-08-31 01:00:00,57.6,135.6,38.47,33.54,8.3,1.25,20.1,42.66,22.35,2.22,24.65,1.26 +2019-08-31 02:00:00,54.51,119.11,41.4,37.17,8.03,1.1,21.64,44.11,22.01,2.0,19.83,1.11 +2019-08-31 03:00:00,49.13,104.56,46.07,37.31,9.16,1.02,23.67,47.15,22.04,1.82,15.37,0.97 +2019-08-31 04:00:00,46.82,92.65,39.27,38.24,8.2,1.0,26.22,43.28,21.18,1.71,14.4,0.76 +2019-08-31 05:00:00,46.19,95.43,33.59,36.57,7.95,0.98,19.88,35.62,17.41,1.45,13.01,0.91 +2019-08-31 06:00:00,49.8,98.85,33.86,33.95,7.97,1.01,18.16,35.99,18.37,1.68,13.54,1.1 +2019-08-31 07:00:00,49.79,100.19,34.28,32.86,7.86,1.01,17.45,39.72,21.61,1.53,14.55,0.98 +2019-08-31 08:00:00,52.2,113.6,33.71,33.17,8.4,1.05,16.46,44.1,26.46,1.62,15.09,1.14 +2019-08-31 09:00:00,50.61,117.84,30.53,34.5,8.54,0.99,24.21,35.77,19.81,1.76,16.12,1.3 +2019-08-31 10:00:00,49.07,116.72,31.39,33.08,8.42,0.97,34.69,31.15,14.48,1.79,13.48,1.35 +2019-08-31 11:00:00,41.77,109.19,27.11,36.08,8.58,0.93,47.44,24.78,9.39,1.6,12.2,1.21 +2019-08-31 12:00:00,42.48,112.46,27.48,40.55,8.82,0.94,61.71,25.05,8.87,1.65,12.83,1.11 +2019-08-31 13:00:00,47.21,122.67,27.28,39.69,8.46,1.0,65.93,23.84,7.96,1.56,16.64,0.51 +2019-08-31 14:00:00,48.01,112.81,29.31,40.23,7.91,1.1,54.72,25.61,9.1,1.89,18.57,0.62 +2019-08-31 15:00:00,45.7,91.25,42.06,39.32,8.23,1.26,44.7,35.97,12.64,2.38,27.36,0.66 +2019-08-31 16:00:00,59.62,80.94,40.95,38.22,8.67,1.38,46.85,36.04,12.65,2.88,37.33,0.65 +2019-08-31 17:00:00,67.79,102.26,38.32,41.36,8.77,1.4,52.89,32.68,9.73,3.55,34.24,0.35 +2019-08-31 18:00:00,55.28,118.93,44.62,41.34,8.1,1.5,44.45,35.33,9.46,3.92,32.21,0.32 +2019-08-31 19:00:00,60.61,131.66,52.16,44.64,8.21,1.72,34.86,41.25,12.03,3.52,37.89,0.44 +2019-08-31 20:00:00,72.26,150.6,60.67,42.48,8.59,2.25,27.39,49.66,16.78,4.06,45.69,0.97 +2019-08-31 21:00:00,80.68,173.59,63.52,45.99,12.5,2.69,24.95,58.41,24.88,5.0,52.42,1.48 +2019-08-31 22:00:00,91.22,202.23,62.88,46.48,16.44,2.97,29.3,67.54,36.61,7.51,69.53,2.9 +2019-08-31 23:00:00,95.72,214.33,57.14,47.33,14.36,2.89,29.44,66.77,39.45,5.9,63.49,3.26 +2019-09-01 00:00:00,95.92,209.36,51.21,46.85,11.15,2.55,37.52,61.54,36.28,4.15,49.96,3.47 +2019-09-01 01:00:00,93.67,204.84,44.71,41.53,9.19,1.8,36.47,56.5,33.79,4.48,42.63,3.16 +2019-09-01 02:00:00,80.94,168.02,38.17,41.17,8.65,1.33,24.27,45.14,25.47,2.93,30.56,1.85 +2019-09-01 03:00:00,60.12,111.14,31.41,48.7,8.4,1.01,25.12,33.0,16.12,2.07,27.57,1.56 +2019-09-01 04:00:00,47.89,91.0,28.8,43.88,7.93,0.99,19.5,29.35,13.78,1.81,23.87,1.85 +2019-09-01 05:00:00,41.57,84.77,29.48,39.99,7.89,0.88,20.96,27.45,11.32,1.66,21.89,1.47 +2019-09-01 06:00:00,41.31,74.79,26.36,39.85,7.51,0.86,20.12,25.34,10.75,1.37,15.26,0.82 +2019-09-01 07:00:00,34.27,67.39,22.91,37.26,7.27,0.79,21.18,22.56,9.65,1.25,15.05,0.58 +2019-09-01 08:00:00,24.32,52.61,22.14,39.51,7.22,0.76,28.35,19.89,7.27,1.28,13.32,0.49 +2019-09-01 09:00:00,15.25,34.1,26.58,40.97,7.53,0.82,31.21,22.91,8.27,1.02,10.47,0.12 +2019-09-01 10:00:00,14.72,26.12,29.38,42.23,7.8,0.97,29.58,25.45,9.31,1.25,13.81,0.0 +2019-09-01 11:00:00,16.13,36.8,32.65,41.61,7.78,0.94,26.83,28.18,10.3,1.44,13.96,0.0 +2019-09-01 12:00:00,18.57,46.04,27.71,43.39,8.32,0.99,28.69,23.93,8.45,1.51,13.77,0.0 +2019-09-01 13:00:00,18.53,51.45,26.3,41.82,9.1,0.98,29.79,22.43,7.68,1.42,14.23,0.0 +2019-09-01 14:00:00,17.02,51.17,24.05,39.99,8.99,0.91,36.94,20.72,7.12,1.25,13.66,0.08 +2019-09-01 15:00:00,14.72,48.79,24.03,38.74,8.99,0.91,46.41,20.19,6.43,1.6,14.63,0.14 +2019-09-01 16:00:00,17.41,51.87,24.43,36.32,8.59,0.97,43.76,20.3,6.26,1.65,15.12,0.31 +2019-09-01 17:00:00,17.46,57.31,26.4,38.57,8.94,0.96,47.95,21.36,6.29,1.75,15.69,0.03 +2019-09-01 18:00:00,16.1,63.18,31.57,40.28,9.09,0.99,44.53,23.99,6.16,1.77,15.67,0.04 +2019-09-01 19:00:00,19.55,67.6,38.07,40.37,8.21,0.95,30.93,29.06,7.58,1.99,18.86,0.27 +2019-09-01 20:00:00,24.36,81.95,42.21,41.68,8.25,1.21,26.93,32.93,9.5,2.36,21.27,0.26 +2019-09-01 21:00:00,38.6,98.03,41.75,42.43,7.94,1.29,25.51,32.24,9.25,2.63,29.13,0.75 +2019-09-01 22:00:00,36.35,89.47,39.87,41.39,8.05,1.35,29.95,31.78,9.77,2.68,26.3,0.74 +2019-09-01 23:00:00,38.37,86.85,39.84,38.96,9.0,1.37,37.28,33.43,11.85,2.81,23.11,0.9 +2019-09-02 00:00:00,37.93,84.49,34.36,35.64,8.94,1.29,38.69,28.73,9.76,2.63,20.41,0.8 +2019-09-02 01:00:00,34.9,79.53,29.42,35.32,8.49,1.03,37.34,25.17,8.84,2.21,15.58,0.7 +2019-09-02 02:00:00,31.76,68.56,27.22,38.88,8.34,1.0,19.58,22.91,8.19,1.82,13.64,0.42 +2019-09-02 03:00:00,28.9,57.64,27.86,36.24,8.56,0.87,18.19,27.29,12.73,1.53,12.81,0.6 +2019-09-02 04:00:00,29.67,61.02,25.04,34.89,7.6,0.9,17.11,24.29,10.89,1.47,12.37,0.69 +2019-09-02 05:00:00,30.95,56.82,25.22,33.13,8.18,0.82,16.08,24.99,12.02,1.36,12.08,0.67 +2019-09-02 06:00:00,30.49,58.85,26.51,33.41,8.92,0.79,16.83,28.64,15.55,1.52,13.11,0.79 +2019-09-02 07:00:00,33.98,69.81,26.56,35.49,8.2,0.96,18.56,33.02,20.19,1.5,15.06,0.44 +2019-09-02 08:00:00,38.54,82.09,27.87,36.54,8.7,1.06,20.74,31.99,17.91,1.91,15.19,0.73 +2019-09-02 09:00:00,41.94,96.32,26.21,35.15,10.3,1.04,22.2,26.72,12.7,1.65,14.23,1.12 +2019-09-02 10:00:00,38.13,96.76,26.35,35.76,11.15,1.03,31.49,25.33,10.89,1.54,12.89,1.18 +2019-09-02 11:00:00,43.68,104.11,26.49,34.76,10.83,1.01,48.35,24.17,9.58,1.62,14.02,0.39 +2019-09-02 12:00:00,47.41,116.37,28.61,36.79,9.94,1.04,61.32,22.88,6.58,1.81,18.21,0.2 +2019-09-02 13:00:00,51.75,130.01,27.12,39.08,8.68,1.02,74.33,20.73,5.31,1.93,17.81,0.15 +2019-09-02 14:00:00,54.99,116.08,24.95,38.39,8.01,0.96,83.6,19.63,5.25,1.83,15.21,0.17 +2019-09-02 15:00:00,56.27,116.5,26.67,36.53,7.87,0.92,83.63,21.7,6.13,1.8,14.93,0.02 +2019-09-02 16:00:00,58.63,113.4,27.44,35.61,7.75,0.9,71.07,23.56,7.44,1.75,18.99,0.0 +2019-09-02 17:00:00,52.4,112.52,28.15,36.32,7.82,0.89,62.92,23.29,6.96,1.79,27.22,0.38 +2019-09-02 18:00:00,46.5,107.46,33.55,36.88,8.82,1.01,45.56,27.46,8.41,1.83,30.76,0.78 +2019-09-02 19:00:00,48.53,124.51,45.42,36.25,8.95,1.3,41.28,36.11,11.07,2.2,38.55,3.2 +2019-09-02 20:00:00,56.96,139.22,54.13,36.02,8.8,1.46,34.94,42.07,12.02,2.74,38.13,3.44 +2019-09-02 21:00:00,67.06,144.41,51.69,36.77,9.19,1.51,29.74,39.35,10.13,2.89,43.49,4.85 +2019-09-02 22:00:00,73.06,152.68,46.67,37.44,8.66,1.51,24.72,35.69,9.76,2.88,43.47,5.43 +2019-09-02 23:00:00,73.15,153.74,42.34,40.07,8.79,1.42,22.07,32.74,9.54,2.81,41.18,4.09 +2019-09-03 00:00:00,72.71,145.07,40.25,39.1,8.72,1.32,19.33,34.3,12.42,2.51,35.92,4.14 +2019-09-03 01:00:00,68.8,128.24,38.8,36.74,9.43,1.18,17.1,34.01,12.65,2.19,27.66,3.69 +2019-09-03 02:00:00,69.33,125.58,36.78,39.56,9.49,1.17,18.68,32.62,12.51,2.35,26.21,3.55 +2019-09-03 03:00:00,64.44,120.35,33.61,34.21,10.16,1.08,16.86,33.75,15.76,2.62,25.84,4.12 +2019-09-03 04:00:00,63.62,115.98,32.31,37.83,9.1,1.06,15.3,33.05,16.18,2.72,25.49,3.54 +2019-09-03 05:00:00,70.42,122.17,33.52,34.25,7.91,1.09,15.96,37.21,19.97,2.73,25.07,2.4 +2019-09-03 06:00:00,71.03,127.97,35.4,34.17,7.89,1.12,14.62,40.36,22.41,2.73,25.87,2.12 +2019-09-03 07:00:00,74.57,135.19,33.78,35.3,8.38,1.2,16.5,39.72,23.11,2.55,26.27,2.42 +2019-09-03 08:00:00,77.43,149.5,34.98,38.47,8.15,1.25,25.23,37.19,19.34,2.41,24.25,2.8 +2019-09-03 09:00:00,81.91,154.91,31.86,35.63,9.26,1.07,36.57,28.6,11.32,2.21,20.62,1.4 +2019-09-03 10:00:00,71.82,142.63,28.53,36.72,9.99,1.09,36.34,24.57,8.82,1.63,16.15,0.84 +2019-09-03 11:00:00,62.22,130.61,28.34,38.06,9.53,1.11,42.25,25.26,9.81,1.75,15.84,1.15 +2019-09-03 12:00:00,65.29,137.15,31.78,38.33,9.01,1.11,47.19,28.76,11.36,1.86,16.09,1.47 +2019-09-03 13:00:00,62.11,140.83,29.64,37.23,8.58,1.01,51.04,23.44,6.81,2.01,16.78,0.08 +2019-09-03 14:00:00,61.28,133.51,29.02,37.88,8.38,1.02,58.3,22.51,6.09,2.0,16.56,0.0 +2019-09-03 15:00:00,59.27,127.49,25.75,37.24,8.54,0.92,58.0,20.42,5.76,1.77,26.83,0.32 +2019-09-03 16:00:00,56.63,119.17,25.15,37.49,9.05,0.9,56.7,20.34,5.84,1.53,21.92,0.0 +2019-09-03 17:00:00,61.24,118.04,28.48,32.71,9.1,0.96,52.76,22.59,6.4,1.86,21.28,0.4 +2019-09-03 18:00:00,63.89,134.44,35.43,33.48,9.25,1.07,44.15,27.42,7.64,1.88,30.3,1.89 +2019-09-03 19:00:00,68.54,152.91,43.91,40.83,9.73,1.39,34.01,34.87,10.72,2.49,25.32,2.82 +2019-09-03 20:00:00,81.7,189.05,52.72,36.32,9.67,1.77,28.55,47.78,19.34,3.28,31.97,6.02 +2019-09-03 21:00:00,93.24,215.18,57.41,35.49,8.89,1.82,25.31,47.71,16.48,3.8,38.97,3.63 +2019-09-03 22:00:00,90.19,194.57,56.21,33.25,8.26,1.77,24.16,46.82,16.27,3.56,35.06,2.81 +2019-09-03 23:00:00,83.7,184.79,52.63,31.9,8.41,1.59,25.0,43.52,15.42,3.14,33.29,3.14 +2019-09-04 00:00:00,80.14,165.99,52.57,28.4,8.29,1.52,21.96,44.45,17.22,3.01,31.33,4.37 +2019-09-04 01:00:00,83.58,164.36,50.73,34.36,8.13,1.39,22.43,43.15,16.1,3.16,32.02,4.64 +2019-09-04 02:00:00,87.23,166.86,46.39,41.01,8.49,1.26,27.25,39.1,13.67,2.95,29.94,3.64 +2019-09-04 03:00:00,81.0,155.91,39.5,37.86,9.45,1.22,25.23,32.81,10.86,2.36,29.12,3.58 +2019-09-04 04:00:00,80.47,147.9,38.76,39.76,8.23,1.15,21.77,32.98,11.77,2.38,30.38,2.93 +2019-09-04 05:00:00,84.08,146.5,36.45,37.88,8.11,1.12,19.8,33.71,14.14,2.57,28.09,1.7 +2019-09-04 06:00:00,86.66,147.04,35.99,35.48,7.64,1.15,16.97,37.71,18.59,2.1,26.24,1.51 +2019-09-04 07:00:00,84.94,145.13,37.78,38.02,8.08,1.25,19.64,40.33,20.74,2.06,24.84,0.44 +2019-09-04 08:00:00,79.59,152.75,36.55,40.78,8.91,1.27,21.69,35.78,16.78,2.27,24.65,1.13 +2019-09-04 09:00:00,80.87,160.59,37.68,39.1,8.91,1.3,31.48,33.91,13.7,2.47,25.91,2.7 +2019-09-04 10:00:00,95.88,204.88,39.67,42.44,10.07,1.44,28.13,32.62,11.6,3.3,26.53,1.99 +2019-09-04 11:00:00,105.31,210.51,34.98,38.84,9.68,1.39,39.56,28.5,9.32,2.83,26.31,1.39 +2019-09-04 12:00:00,93.67,197.96,33.19,39.84,9.52,1.2,48.61,25.85,7.36,2.46,24.32,1.19 +2019-09-04 13:00:00,68.88,157.24,31.74,37.45,9.99,1.07,61.62,23.88,6.07,2.11,24.14,1.28 +2019-09-04 14:00:00,63.55,145.26,29.38,36.0,9.95,1.0,72.27,21.9,5.25,2.07,21.08,0.7 +2019-09-04 15:00:00,60.07,138.52,30.59,36.49,9.54,1.03,65.34,22.71,5.25,1.84,21.25,0.89 +2019-09-04 16:00:00,57.99,134.1,28.53,38.66,9.28,0.96,63.49,21.31,5.24,1.68,20.8,0.16 +2019-09-04 17:00:00,57.83,129.96,30.95,38.13,8.66,1.07,53.17,22.63,5.54,2.0,27.19,0.42 +2019-09-04 18:00:00,56.7,127.03,30.69,35.22,8.43,1.07,49.96,22.86,5.55,1.94,28.56,0.35 +2019-09-04 19:00:00,57.94,130.56,38.3,35.27,10.09,1.21,38.43,27.86,6.86,2.19,26.25,1.0 +2019-09-04 20:00:00,59.23,136.26,41.68,37.87,10.3,1.36,33.94,32.77,9.92,2.66,32.36,0.8 +2019-09-04 21:00:00,60.53,134.09,39.18,36.17,9.98,1.35,35.8,30.06,8.41,2.87,27.42,1.11 +2019-09-04 22:00:00,51.08,113.72,34.92,33.61,8.92,1.29,25.58,27.19,7.69,2.17,23.6,2.05 +2019-09-04 23:00:00,42.79,96.16,31.5,32.52,8.13,1.11,23.0,24.71,7.34,1.63,19.16,1.74 +2019-09-05 00:00:00,38.92,83.93,30.31,32.73,7.79,1.0,19.25,24.13,7.55,1.52,16.49,1.34 +2019-09-05 01:00:00,38.57,78.39,28.88,32.41,7.48,0.89,16.37,23.05,7.18,1.42,14.99,1.4 +2019-09-05 02:00:00,37.89,76.03,26.84,38.44,7.43,0.9,19.99,21.93,6.71,1.41,13.34,0.74 +2019-09-05 03:00:00,32.84,71.55,25.27,34.5,9.05,0.81,24.3,21.32,7.31,1.41,14.53,0.63 +2019-09-05 04:00:00,31.05,66.75,24.4,33.38,8.37,0.81,27.09,20.39,6.87,1.12,14.02,0.45 +2019-09-05 05:00:00,30.07,63.21,24.45,31.85,8.69,0.81,33.31,21.21,7.54,1.06,14.53,0.36 +2019-09-05 06:00:00,31.41,66.5,25.57,30.8,9.42,0.85,19.12,22.81,9.16,1.15,15.68,0.5 +2019-09-05 07:00:00,31.46,67.51,26.82,30.84,9.64,0.88,24.9,27.88,14.02,1.15,17.49,0.9 +2019-09-05 08:00:00,38.09,83.86,25.24,33.01,9.88,0.93,33.15,27.91,14.97,1.34,18.74,1.06 +2019-09-05 09:00:00,36.27,93.87,24.07,31.57,9.83,1.0,30.58,25.03,12.52,1.35,15.53,0.22 +2019-09-05 10:00:00,37.93,109.63,23.13,32.74,9.64,0.95,26.57,22.05,9.55,1.32,13.72,1.11 +2019-09-05 11:00:00,40.16,104.71,24.64,34.34,9.18,0.96,33.06,21.79,8.36,1.62,17.7,1.77 +2019-09-05 12:00:00,44.08,116.56,28.49,34.72,9.49,0.96,46.11,22.98,7.5,2.02,21.0,2.12 +2019-09-05 13:00:00,41.2,113.49,27.52,34.46,8.64,0.85,52.77,22.45,6.68,1.81,20.62,0.68 +2019-09-05 14:00:00,32.7,92.32,23.01,32.95,8.47,0.78,52.3,17.27,5.23,1.72,17.41,1.27 +2019-09-05 15:00:00,29.15,85.47,24.16,33.3,9.79,0.79,43.75,19.18,6.59,1.36,21.32,0.36 +2019-09-05 16:00:00,29.23,86.36,25.57,31.7,11.08,0.83,40.19,20.29,6.85,1.48,20.26,0.37 +2019-09-05 17:00:00,28.31,78.7,29.49,33.23,10.28,0.86,35.0,23.52,8.18,1.8,25.91,0.35 +2019-09-05 18:00:00,26.78,79.66,33.01,34.73,10.17,0.93,32.04,25.36,7.93,2.04,25.11,0.11 +2019-09-05 19:00:00,26.6,89.21,38.76,33.35,9.89,1.1,20.98,31.89,11.67,2.26,25.73,0.4 +2019-09-05 20:00:00,28.66,111.98,41.12,34.39,9.52,1.29,17.14,35.56,14.1,2.79,28.47,0.55 +2019-09-05 21:00:00,34.99,117.05,39.99,36.1,9.41,1.41,16.82,37.71,17.85,3.06,34.1,1.82 +2019-09-05 22:00:00,34.95,122.86,39.31,32.57,9.43,1.38,13.5,37.96,18.44,3.0,30.97,2.12 +2019-09-05 23:00:00,32.28,110.99,38.21,31.33,9.43,1.34,14.55,36.15,16.96,2.71,27.18,1.97 +2019-09-06 00:00:00,31.93,95.67,35.23,35.43,10.19,1.18,14.46,32.1,14.13,2.44,24.47,1.76 +2019-09-06 01:00:00,32.91,89.13,31.93,31.87,10.96,0.97,20.41,28.04,11.65,1.72,21.11,1.85 +2019-09-06 02:00:00,33.11,82.54,29.83,38.45,11.78,0.91,24.14,26.4,11.05,1.6,21.35,1.14 +2019-09-06 03:00:00,36.79,80.11,28.38,32.9,11.86,0.87,16.84,24.44,9.76,1.69,22.36,0.66 +2019-09-06 04:00:00,40.72,79.36,27.06,28.69,9.33,0.81,16.73,23.68,9.8,1.53,22.22,0.55 +2019-09-06 05:00:00,43.1,84.86,26.49,32.73,10.65,0.78,16.57,24.62,11.19,1.65,25.76,0.32 +2019-09-06 06:00:00,42.69,83.22,26.31,34.54,12.4,0.8,23.16,25.53,12.29,1.92,22.88,0.19 +2019-09-06 07:00:00,43.42,86.23,25.85,30.4,14.03,0.99,21.18,29.19,16.7,1.95,27.23,0.33 +2019-09-06 08:00:00,44.99,98.99,26.6,37.46,14.8,1.13,24.78,29.91,17.32,2.41,25.86,1.59 +2019-09-06 09:00:00,46.66,108.48,25.67,32.89,10.46,1.05,28.48,24.7,11.6,2.21,21.13,1.71 +2019-09-06 10:00:00,40.98,104.99,24.71,39.7,10.13,0.94,34.04,20.74,7.72,1.87,15.35,0.83 +2019-09-06 11:00:00,36.35,100.01,24.52,39.26,10.44,0.94,38.21,20.7,7.83,1.78,15.37,1.38 +2019-09-06 12:00:00,33.81,86.22,21.4,42.91,9.84,0.85,47.26,16.96,5.55,2.03,16.24,0.41 +2019-09-06 13:00:00,32.41,84.77,23.32,38.06,9.59,0.84,49.17,19.79,7.48,2.18,16.16,0.34 +2019-09-06 14:00:00,33.23,91.84,22.36,37.0,10.0,0.85,46.91,18.15,6.01,2.17,17.04,0.59 +2019-09-06 15:00:00,28.65,80.47,23.3,32.8,10.01,0.73,47.25,19.33,6.67,1.18,13.2,0.76 +2019-09-06 16:00:00,29.69,73.9,25.69,32.9,10.05,0.82,43.53,20.73,6.45,1.7,15.3,0.56 +2019-09-06 17:00:00,31.84,79.14,29.82,31.38,9.5,0.89,38.31,24.25,8.91,2.09,20.62,0.4 +2019-09-06 18:00:00,31.31,84.51,35.81,34.06,9.87,1.02,29.67,33.65,15.86,2.26,26.66,0.61 +2019-09-06 19:00:00,29.43,79.69,45.31,33.71,11.03,1.17,18.0,39.64,16.53,2.71,25.54,2.66 +2019-09-06 20:00:00,32.01,96.93,46.75,30.97,13.12,1.34,13.67,42.74,19.03,3.38,27.47,2.82 +2019-09-06 21:00:00,36.59,107.28,41.59,32.06,13.86,1.41,12.61,39.68,18.88,3.29,29.22,3.35 +2019-09-06 22:00:00,35.67,100.14,38.31,33.01,8.76,1.33,13.58,38.05,19.04,2.95,26.47,3.69 +2019-09-06 23:00:00,31.1,88.73,34.88,31.29,8.87,1.16,14.4,36.77,20.09,2.45,22.07,4.3 +2019-09-07 00:00:00,30.35,76.23,32.4,26.79,9.05,1.11,13.94,35.26,19.72,2.07,17.76,4.47 +2019-09-07 01:00:00,31.68,73.15,31.72,27.71,8.1,0.95,16.5,36.0,20.75,1.61,14.74,2.57 +2019-09-07 02:00:00,30.53,67.7,31.17,30.5,7.74,0.98,15.29,35.5,20.56,1.61,13.87,2.57 +2019-09-07 03:00:00,25.79,66.16,30.03,33.57,8.28,0.9,15.95,34.27,19.29,1.53,15.84,3.14 +2019-09-07 04:00:00,28.23,67.62,30.12,28.5,7.45,0.87,18.05,35.35,20.18,1.38,16.07,3.13 +2019-09-07 05:00:00,37.28,75.42,30.1,28.24,7.78,0.88,23.58,37.36,22.63,1.47,16.57,2.31 +2019-09-07 06:00:00,39.91,78.57,27.25,29.71,9.11,0.87,26.08,33.44,20.25,1.65,18.7,2.07 +2019-09-07 07:00:00,41.73,79.59,27.08,25.59,8.86,0.97,16.65,33.88,20.57,1.67,19.88,3.48 +2019-09-07 08:00:00,53.76,94.42,25.82,26.33,8.77,1.06,16.38,28.2,14.82,1.56,20.62,3.97 +2019-09-07 09:00:00,47.61,103.76,23.37,26.75,8.54,0.99,20.42,24.09,11.64,1.4,15.33,2.47 +2019-09-07 10:00:00,42.71,88.8,23.34,28.12,8.73,0.94,27.17,22.49,9.97,1.39,11.9,1.89 +2019-09-07 11:00:00,41.53,92.98,23.04,34.1,9.33,0.86,35.73,21.9,9.83,1.4,12.29,1.23 +2019-09-07 12:00:00,38.69,97.15,25.2,34.95,8.97,0.91,38.43,21.52,8.0,1.54,15.45,0.97 +2019-09-07 13:00:00,33.99,89.92,23.74,33.54,8.29,0.84,43.22,22.13,9.56,1.31,11.3,0.88 +2019-09-07 14:00:00,33.13,92.05,24.19,30.55,7.98,0.79,46.45,21.11,8.37,1.4,15.56,1.03 +2019-09-07 15:00:00,33.19,89.3,28.54,31.2,7.69,0.91,44.58,25.45,10.61,1.51,23.89,1.64 +2019-09-07 16:00:00,32.94,90.49,29.38,29.98,7.73,0.92,44.83,24.02,8.01,2.18,25.12,0.6 +2019-09-07 17:00:00,29.64,74.9,35.93,28.73,7.25,1.02,30.91,31.45,12.19,2.46,21.88,1.1 +2019-09-07 18:00:00,24.56,68.04,39.65,30.38,7.13,1.06,21.26,34.03,12.27,2.59,26.33,3.22 +2019-09-07 19:00:00,30.86,89.42,44.22,33.45,7.71,1.22,15.59,37.46,13.81,2.41,25.62,2.07 +2019-09-07 20:00:00,33.76,99.95,47.01,33.69,7.7,1.36,12.36,40.7,15.91,2.82,31.72,3.81 +2019-09-07 21:00:00,34.21,88.86,39.83,38.45,7.67,1.31,11.69,34.04,12.8,2.8,27.37,4.16 +2019-09-07 22:00:00,32.71,78.01,34.59,33.66,7.95,1.12,13.01,30.92,12.33,2.32,22.14,3.92 +2019-09-07 23:00:00,30.62,75.81,33.92,33.43,8.37,1.14,21.79,31.43,13.09,2.03,22.08,2.09 +2019-09-08 00:00:00,30.33,78.0,30.51,35.94,8.33,1.12,26.82,27.88,11.6,1.77,17.87,1.29 +2019-09-08 01:00:00,28.02,68.36,29.0,36.72,8.17,0.85,19.68,25.77,10.27,1.65,14.18,0.96 +2019-09-08 02:00:00,23.41,52.65,26.75,38.37,7.66,0.79,18.64,23.68,9.23,1.43,13.16,0.76 +2019-09-08 03:00:00,22.43,50.92,24.41,32.83,9.35,0.66,20.44,22.12,8.72,1.44,14.64,0.78 +2019-09-08 04:00:00,23.54,52.12,25.09,28.74,8.43,0.75,24.11,23.76,10.43,1.36,15.49,0.5 +2019-09-08 05:00:00,24.49,53.55,25.64,32.43,7.32,0.8,27.44,24.55,11.38,1.36,18.25,0.45 +2019-09-08 06:00:00,23.47,54.13,24.59,31.56,9.84,0.8,25.94,27.57,15.96,1.49,16.82,0.21 +2019-09-08 07:00:00,25.68,59.4,23.43,31.64,8.86,0.89,18.34,30.65,19.91,1.45,17.26,0.2 +2019-09-08 08:00:00,28.3,66.63,25.25,31.68,8.43,0.89,22.93,31.16,18.69,1.45,16.21,0.05 +2019-09-08 09:00:00,36.64,80.27,26.8,32.16,8.82,0.94,33.84,28.81,14.96,1.71,16.28,1.93 +2019-09-08 10:00:00,42.25,86.91,27.07,32.86,9.41,0.89,45.22,25.79,11.54,1.68,16.17,1.45 +2019-09-08 11:00:00,40.1,84.85,26.5,33.77,9.59,0.81,43.32,23.36,9.33,1.5,14.37,0.32 +2019-09-08 12:00:00,36.37,80.61,27.66,30.67,10.27,0.78,52.52,22.53,7.52,1.47,14.05,0.0 +2019-09-08 13:00:00,43.28,92.8,22.1,34.61,9.74,0.79,63.49,17.75,5.49,1.55,14.41,0.07 +2019-09-08 14:00:00,40.41,84.73,21.01,34.41,9.32,0.77,57.73,16.85,5.36,1.34,17.29,0.59 +2019-09-08 15:00:00,35.62,74.17,19.73,28.95,8.81,0.7,45.69,16.25,5.48,1.13,14.32,0.32 +2019-09-08 16:00:00,26.85,66.57,18.89,28.61,8.46,0.86,40.31,15.99,5.47,0.9,14.55,0.04 +2019-09-08 17:00:00,26.49,66.87,20.98,29.17,7.95,0.88,38.94,16.93,5.45,0.92,15.39,0.19 +2019-09-08 18:00:00,27.23,68.95,26.6,27.12,7.62,0.77,34.71,21.43,6.94,1.04,21.53,0.46 +2019-09-08 19:00:00,30.91,80.6,30.26,30.81,7.44,0.89,26.4,24.82,8.57,1.35,24.57,1.45 +2019-09-08 20:00:00,34.51,92.39,34.65,28.71,8.29,1.09,22.47,29.27,10.68,2.01,28.93,4.67 +2019-09-08 21:00:00,40.21,107.43,36.3,35.14,8.79,1.25,21.31,32.35,12.86,2.38,34.83,7.6 +2019-09-08 22:00:00,47.31,118.05,35.88,33.06,9.14,1.31,19.86,32.18,14.05,2.43,31.61,2.21 +2019-09-08 23:00:00,49.99,127.29,35.1,31.28,9.31,1.24,27.51,32.61,14.68,2.39,22.41,4.9 +2019-09-09 00:00:00,63.1,135.33,33.17,30.1,8.62,1.14,15.91,31.37,14.85,1.98,23.67,7.22 +2019-09-09 01:00:00,55.18,115.0,30.63,30.93,8.06,1.07,18.9,30.01,14.24,2.03,21.53,7.19 +2019-09-09 02:00:00,54.15,108.18,28.78,35.09,7.83,0.97,26.05,28.49,13.9,1.75,22.4,4.96 +2019-09-09 03:00:00,57.64,105.05,29.49,32.66,8.88,0.85,16.98,27.55,12.53,1.91,21.44,4.88 +2019-09-09 04:00:00,57.51,101.85,28.32,29.27,7.4,0.9,22.69,26.69,11.54,1.65,18.92,6.19 +2019-09-09 05:00:00,66.63,103.79,28.91,29.61,7.36,0.93,15.31,27.8,12.84,1.72,17.8,2.43 +2019-09-09 06:00:00,65.56,104.54,29.38,31.16,7.29,0.99,14.49,32.79,18.79,1.67,16.53,0.98 +2019-09-09 07:00:00,62.04,107.2,29.25,32.78,7.97,1.07,15.77,36.22,22.96,1.66,16.88,0.88 +2019-09-09 08:00:00,66.09,124.67,32.73,34.55,8.94,1.19,14.75,37.36,21.88,1.73,17.49,0.36 +2019-09-09 09:00:00,73.51,143.17,30.23,26.9,8.65,1.1,19.94,28.55,12.67,1.64,15.96,0.49 +2019-09-09 10:00:00,65.55,122.85,24.58,32.74,8.16,0.89,28.92,22.61,9.73,1.21,12.28,0.07 +2019-09-09 11:00:00,53.85,114.94,24.2,33.4,8.19,0.94,41.75,22.57,10.12,1.48,12.71,0.0 +2019-09-09 12:00:00,47.98,113.68,22.74,32.62,8.47,0.82,53.78,20.43,8.25,1.51,16.29,0.0 +2019-09-09 13:00:00,46.78,115.36,22.32,32.02,8.53,0.76,59.22,20.17,8.23,1.57,19.86,0.0 +2019-09-09 14:00:00,50.84,126.17,23.18,30.15,8.62,0.75,61.62,20.24,7.48,1.45,21.12,0.0 +2019-09-09 15:00:00,55.98,129.67,23.84,29.03,8.86,0.72,58.89,19.72,6.86,1.36,24.21,0.0 +2019-09-09 16:00:00,55.17,129.2,23.8,29.51,8.38,0.75,52.92,20.27,7.45,1.68,28.75,0.0 +2019-09-09 17:00:00,47.91,129.02,24.99,29.47,8.26,0.78,48.9,21.93,8.33,1.48,30.87,0.0 +2019-09-09 18:00:00,44.59,126.03,29.31,28.64,8.36,0.81,42.67,25.21,9.28,1.62,33.05,0.07 +2019-09-09 19:00:00,44.52,134.27,40.0,28.04,8.52,0.92,32.76,32.04,10.94,2.21,39.88,0.21 +2019-09-09 20:00:00,48.43,146.84,42.98,26.68,8.65,1.13,24.66,35.14,12.06,2.53,30.87,0.1 +2019-09-09 21:00:00,52.97,161.44,43.16,29.19,8.98,1.37,19.53,39.8,17.23,2.92,36.39,0.73 +2019-09-09 22:00:00,56.59,165.59,43.46,27.07,9.64,1.57,16.73,48.33,26.98,3.22,31.41,1.49 +2019-09-09 23:00:00,58.89,170.53,41.74,27.21,10.09,1.58,17.12,51.79,31.6,3.08,29.9,0.74 +2019-09-10 00:00:00,61.3,157.3,39.23,27.69,9.23,1.35,17.88,43.32,23.04,2.53,30.56,0.9 +2019-09-10 01:00:00,64.29,148.6,37.69,27.31,9.25,1.16,19.52,38.36,18.46,2.62,28.18,5.84 +2019-09-10 02:00:00,62.96,144.72,35.16,31.05,9.3,1.06,19.73,36.67,18.01,2.66,25.43,9.44 +2019-09-10 03:00:00,62.33,139.75,33.72,31.7,9.61,1.02,22.74,39.65,22.02,2.57,27.19,4.94 +2019-09-10 04:00:00,61.22,139.19,34.83,29.33,7.7,0.99,22.09,41.72,23.85,2.57,23.38,1.93 +2019-09-10 05:00:00,60.26,131.61,34.25,29.05,8.1,1.05,19.03,42.93,25.84,2.57,23.91,2.24 +2019-09-10 06:00:00,67.1,129.35,32.51,26.91,8.67,1.08,26.3,47.0,31.8,2.5,24.34,3.52 +2019-09-10 07:00:00,67.52,133.69,32.81,25.05,9.29,1.18,27.92,52.26,37.3,2.65,25.19,3.38 +2019-09-10 08:00:00,75.74,143.18,35.77,26.19,9.49,1.25,27.18,41.51,23.9,2.74,27.67,5.39 +2019-09-10 09:00:00,75.63,142.79,30.74,27.91,9.92,1.07,36.65,27.41,10.88,2.22,22.5,1.6 +2019-09-10 10:00:00,66.22,127.97,26.24,28.75,10.27,0.93,39.38,23.08,8.82,1.69,13.31,0.8 +2019-09-10 11:00:00,59.16,131.35,27.2,32.39,10.66,0.86,50.25,23.61,8.42,1.61,14.21,0.47 +2019-09-10 12:00:00,59.05,131.87,25.93,33.42,10.02,0.83,61.53,22.36,7.51,1.72,15.75,0.28 +2019-09-10 13:00:00,59.65,134.45,23.48,32.58,9.84,0.83,72.9,18.5,5.25,2.12,17.51,0.18 +2019-09-10 14:00:00,58.19,120.53,24.06,32.59,9.62,0.81,73.87,18.85,5.41,2.22,19.68,0.6 +2019-09-10 15:00:00,58.54,129.74,27.99,29.17,9.43,0.95,78.95,30.15,14.38,1.75,21.42,0.24 +2019-09-10 16:00:00,58.74,128.76,24.18,28.95,9.69,0.74,79.13,21.21,7.02,1.58,22.74,0.15 +2019-09-10 17:00:00,55.29,127.58,25.67,27.83,9.37,0.73,71.33,22.26,7.75,1.55,26.61,0.11 +2019-09-10 18:00:00,51.88,124.61,28.53,28.76,8.96,0.83,59.32,21.44,5.1,1.56,33.91,0.32 +2019-09-10 19:00:00,56.71,143.94,38.92,28.45,8.76,1.01,44.23,29.86,7.54,2.11,41.89,1.45 +2019-09-10 20:00:00,63.68,167.52,46.23,29.42,8.96,1.27,32.49,37.54,11.0,2.46,47.46,1.02 +2019-09-10 21:00:00,71.77,186.33,51.87,30.38,9.55,1.6,25.98,50.74,23.4,3.04,45.94,6.65 +2019-09-10 22:00:00,83.4,205.14,51.1,27.76,10.25,1.57,23.46,47.78,20.62,3.56,40.87,12.96 +2019-09-10 23:00:00,86.93,197.21,50.77,28.25,11.72,1.56,20.94,49.43,22.45,3.51,32.63,2.7 +2019-09-11 00:00:00,87.85,196.3,48.48,28.36,10.14,1.33,26.19,45.18,19.23,3.35,35.31,2.31 +2019-09-11 01:00:00,86.72,190.57,44.69,28.37,9.3,1.25,24.44,43.27,19.38,3.09,32.15,3.5 +2019-09-11 02:00:00,87.08,171.64,41.37,31.03,9.11,1.16,24.57,40.12,17.97,2.9,25.99,2.84 +2019-09-11 03:00:00,91.17,158.97,40.27,30.93,9.46,1.0,20.45,38.31,16.66,2.55,28.22,2.77 +2019-09-11 04:00:00,82.33,153.12,39.21,31.49,8.64,0.98,20.48,43.11,22.07,2.16,24.22,1.03 +2019-09-11 05:00:00,76.28,142.34,35.35,27.8,8.78,1.0,18.44,40.01,21.66,2.19,21.11,1.73 +2019-09-11 06:00:00,79.13,143.76,35.98,28.95,9.03,1.06,18.17,46.25,28.76,2.26,24.51,2.66 +2019-09-11 07:00:00,90.63,149.51,35.24,25.96,9.48,1.13,21.62,49.43,33.02,2.24,25.48,4.7 +2019-09-11 08:00:00,84.7,166.64,39.68,31.14,9.94,1.19,20.85,49.94,30.33,2.21,24.83,3.25 +2019-09-11 09:00:00,77.02,178.31,39.37,30.07,9.41,1.14,22.59,39.24,18.34,1.99,23.05,3.31 +2019-09-11 10:00:00,70.21,171.39,35.9,29.55,9.18,1.03,37.99,34.09,14.49,1.91,17.02,2.06 +2019-09-11 11:00:00,65.05,166.77,29.6,30.84,9.69,0.9,57.36,27.48,11.34,1.75,13.92,0.73 +2019-09-11 12:00:00,63.47,156.46,27.88,34.21,9.36,0.89,79.94,21.99,5.89,1.78,13.36,0.02 +2019-09-11 13:00:00,63.74,151.05,28.24,34.73,10.17,0.95,97.28,22.05,6.32,1.83,13.95,0.19 +2019-09-11 14:00:00,67.27,154.97,27.94,33.4,12.01,0.86,105.36,23.07,7.07,2.39,21.41,0.12 +2019-09-11 15:00:00,68.36,149.23,27.91,33.87,9.94,0.83,113.28,22.38,6.26,2.39,19.16,0.0 +2019-09-11 16:00:00,73.61,158.67,28.95,32.21,9.95,0.91,111.29,23.04,6.13,2.35,23.69,0.2 +2019-09-11 17:00:00,75.22,171.59,32.08,33.24,9.61,0.89,95.62,23.86,5.57,2.45,30.05,0.22 +2019-09-11 18:00:00,75.12,179.05,38.1,32.28,9.38,0.95,82.99,27.87,6.2,2.05,37.1,1.01 +2019-09-11 19:00:00,80.82,188.06,48.7,33.02,8.89,1.19,57.8,35.93,9.26,2.7,35.19,2.43 +2019-09-11 20:00:00,82.22,207.11,56.31,33.95,9.01,1.52,38.29,42.88,12.25,3.08,47.35,4.11 +2019-09-11 21:00:00,88.33,218.58,59.26,34.72,8.93,1.79,28.89,48.98,16.67,3.34,48.42,1.36 +2019-09-11 22:00:00,96.92,232.47,58.41,34.14,9.33,1.88,24.57,53.14,23.2,3.55,45.17,5.97 +2019-09-11 23:00:00,97.09,227.33,53.64,33.35,10.19,1.75,26.41,49.95,22.68,3.46,40.93,2.83 +2019-09-12 00:00:00,100.21,212.28,50.88,33.32,10.02,1.55,26.21,46.53,19.73,3.37,35.27,3.64 +2019-09-12 01:00:00,93.42,196.33,45.43,31.36,8.91,1.27,23.03,39.77,15.02,2.84,26.07,3.51 +2019-09-12 02:00:00,83.12,167.23,38.65,33.26,8.46,0.98,21.67,30.76,9.23,2.16,20.84,1.04 +2019-09-12 03:00:00,71.91,138.22,34.09,33.7,9.37,0.85,21.34,26.9,8.17,1.76,19.08,2.36 +2019-09-12 04:00:00,70.44,126.5,32.91,29.33,8.11,0.84,20.33,27.42,9.06,1.61,16.08,2.03 +2019-09-12 05:00:00,67.72,122.43,31.28,28.42,8.03,0.86,19.19,26.84,9.58,1.35,12.94,1.08 +2019-09-12 06:00:00,64.79,118.62,32.24,28.08,8.53,0.87,18.82,30.2,13.27,1.38,15.06,1.44 +2019-09-12 07:00:00,61.47,123.86,34.64,27.47,8.71,0.93,17.59,33.69,15.83,1.44,15.87,3.04 +2019-09-12 08:00:00,64.43,134.44,36.79,29.35,9.14,1.02,19.14,35.68,16.3,1.7,13.58,3.57 +2019-09-12 09:00:00,65.79,149.14,35.72,28.67,8.98,1.05,24.56,34.21,14.85,1.68,14.9,3.13 +2019-09-12 10:00:00,61.52,162.4,31.34,27.85,8.62,1.05,31.59,27.6,10.3,1.61,12.93,1.39 +2019-09-12 11:00:00,56.84,146.99,28.5,31.72,8.56,0.96,41.47,23.93,8.12,1.49,11.64,0.59 +2019-09-12 12:00:00,52.09,135.0,26.84,31.95,8.18,0.88,50.77,21.1,6.03,1.5,12.4,0.57 +2019-09-12 13:00:00,50.89,127.79,26.52,31.23,7.96,0.86,51.89,20.11,5.25,1.6,11.42,0.17 +2019-09-12 14:00:00,53.07,132.95,27.13,31.94,7.8,0.88,58.12,20.9,5.46,1.51,12.65,0.22 +2019-09-12 15:00:00,53.22,124.46,27.12,32.11,8.1,0.91,53.64,21.81,6.15,1.34,15.84,0.14 +2019-09-12 16:00:00,50.36,127.44,29.9,30.56,8.98,0.93,45.05,23.21,6.23,1.7,16.53,0.03 +2019-09-12 17:00:00,39.99,106.8,31.88,30.08,9.2,0.98,46.9,23.78,5.71,1.82,17.25,0.09 +2019-09-12 18:00:00,31.58,93.23,34.34,30.99,10.28,0.99,42.33,25.18,5.89,1.84,16.88,0.04 +2019-09-12 19:00:00,31.94,100.51,39.57,30.54,11.29,0.94,37.26,29.56,7.72,1.96,18.31,0.01 +2019-09-12 20:00:00,35.51,117.27,39.81,32.11,9.55,1.07,26.45,31.15,9.21,2.48,22.78,0.24 +2019-09-12 21:00:00,39.59,120.3,36.54,32.98,9.95,1.07,24.92,29.41,9.43,2.48,21.42,0.97 +2019-09-12 22:00:00,42.96,104.87,33.48,31.82,8.85,1.04,25.58,26.36,8.06,2.06,16.97,0.57 +2019-09-12 23:00:00,45.14,93.65,30.53,28.5,8.33,0.94,22.13,24.99,8.33,1.66,14.38,0.84 +2019-09-13 00:00:00,43.74,84.26,33.05,25.33,7.81,0.84,20.44,23.26,7.47,1.33,12.82,0.95 +2019-09-13 01:00:00,42.04,73.01,27.28,24.16,7.17,0.82,18.99,22.34,7.48,1.14,10.28,0.43 +2019-09-13 02:00:00,37.23,64.13,27.46,28.37,7.13,0.75,20.49,22.71,7.78,1.11,9.65,0.0 +2019-09-13 03:00:00,34.17,60.69,24.87,32.22,8.03,0.75,17.19,20.22,6.62,0.99,9.14,0.0 +2019-09-13 04:00:00,34.9,60.99,23.84,29.68,6.84,0.75,15.33,20.19,6.91,0.94,9.73,0.25 +2019-09-13 05:00:00,34.4,60.54,24.8,29.43,7.32,0.79,16.76,21.23,7.5,0.98,11.0,0.26 +2019-09-13 06:00:00,35.48,65.0,26.06,28.69,8.2,0.87,17.3,24.93,11.4,1.05,12.15,0.0 +2019-09-13 07:00:00,41.21,79.0,27.31,28.94,8.81,0.88,17.89,28.11,13.74,1.26,16.97,0.25 +2019-09-13 08:00:00,48.59,95.53,28.59,29.18,9.14,0.94,17.0,31.31,16.59,1.51,19.85,0.03 +2019-09-13 09:00:00,50.62,109.38,28.42,26.98,8.49,0.9,24.37,28.71,13.6,1.51,18.44,1.27 +2019-09-13 10:00:00,40.83,105.15,28.76,26.2,9.2,0.87,27.62,26.91,11.15,1.37,13.07,0.32 +2019-09-13 11:00:00,35.4,94.34,28.62,28.09,9.83,0.82,32.61,25.22,9.13,1.37,11.69,0.66 +2019-09-13 12:00:00,31.53,99.21,23.3,35.08,8.74,0.78,44.27,21.14,8.03,1.3,11.02,0.35 +2019-09-13 13:00:00,27.41,86.49,24.36,32.53,8.77,0.73,52.35,20.98,7.48,1.46,13.28,0.03 +2019-09-13 14:00:00,24.53,80.84,23.97,32.12,8.2,0.75,52.55,18.9,5.64,1.33,14.07,0.29 +2019-09-13 15:00:00,23.17,67.59,24.4,29.52,8.28,0.73,49.83,19.11,5.65,1.39,16.2,0.44 +2019-09-13 16:00:00,23.87,72.16,25.57,27.39,8.19,0.75,48.77,19.75,5.41,1.39,19.73,0.15 +2019-09-13 17:00:00,23.69,72.17,26.7,28.27,8.26,0.78,43.27,21.15,6.32,1.44,26.76,0.26 +2019-09-13 18:00:00,34.23,76.52,31.45,26.85,7.89,0.87,35.87,24.42,7.04,1.53,18.94,0.45 +2019-09-13 19:00:00,25.08,86.07,39.34,26.98,8.95,1.01,23.45,31.75,10.88,1.65,24.94,1.15 +2019-09-13 20:00:00,26.69,99.42,44.59,27.06,7.68,1.21,17.24,36.98,13.37,2.44,21.47,3.62 +2019-09-13 21:00:00,28.96,105.31,42.74,27.02,7.5,1.26,14.98,36.59,14.16,2.9,30.73,4.4 +2019-09-13 22:00:00,29.77,103.83,40.76,27.97,7.7,1.24,13.86,34.31,13.41,2.56,24.76,5.35 +2019-09-13 23:00:00,28.66,95.65,37.84,27.46,7.75,1.06,13.56,31.69,11.76,2.16,18.56,3.94 +2019-09-14 00:00:00,25.64,81.59,34.98,25.73,7.47,0.94,15.82,30.03,11.61,1.61,14.47,2.44 +2019-09-14 01:00:00,24.52,68.24,31.55,25.36,6.95,0.78,13.87,27.3,10.75,1.32,12.75,2.28 +2019-09-14 02:00:00,18.87,54.78,27.64,27.16,6.99,0.72,15.51,22.49,7.8,1.3,12.15,2.79 +2019-09-14 03:00:00,16.91,46.27,25.31,27.38,8.44,0.65,17.98,20.71,7.03,1.08,9.7,1.4 +2019-09-14 04:00:00,19.08,44.84,21.88,25.01,7.49,0.64,21.17,18.72,6.78,0.95,9.44,0.9 +2019-09-14 05:00:00,19.21,44.92,19.85,25.2,7.18,0.6,26.14,17.19,6.36,0.84,7.44,0.3 +2019-09-14 06:00:00,20.57,43.82,20.56,25.55,7.35,0.7,21.57,17.53,6.39,0.76,7.03,0.15 +2019-09-14 07:00:00,23.76,46.05,21.39,25.45,8.51,0.8,18.53,18.31,6.93,0.89,7.67,0.0 +2019-09-14 08:00:00,24.75,50.32,21.94,24.75,8.41,0.82,19.32,20.0,8.44,0.94,12.96,0.18 +2019-09-14 09:00:00,29.09,66.69,22.38,24.49,8.73,0.72,23.26,21.11,9.4,1.01,11.13,0.0 +2019-09-14 10:00:00,31.98,81.74,23.24,24.71,9.78,0.74,28.04,20.67,8.44,1.03,10.08,0.0 +2019-09-14 11:00:00,34.65,85.2,23.34,25.64,10.04,0.75,36.19,20.26,7.84,1.16,11.21,0.06 +2019-09-14 12:00:00,37.18,87.3,23.86,26.75,10.06,0.72,43.75,19.74,6.88,1.46,13.19,0.0 +2019-09-14 13:00:00,38.39,90.7,24.98,26.8,8.73,0.78,46.6,20.98,7.22,1.85,16.87,0.06 +2019-09-14 14:00:00,31.6,83.12,24.35,25.38,8.48,0.72,48.98,19.52,6.19,1.83,16.65,0.29 +2019-09-14 15:00:00,27.58,71.16,24.32,24.58,8.14,0.69,45.45,19.48,6.21,1.61,18.71,0.19 +2019-09-14 16:00:00,25.94,69.6,24.92,23.0,8.03,0.7,46.84,20.26,6.62,1.51,20.6,0.01 +2019-09-14 17:00:00,28.19,74.27,25.05,23.06,7.71,0.72,42.39,20.71,7.01,1.68,22.02,0.0 +2019-09-14 18:00:00,26.45,73.74,26.12,23.19,7.57,0.81,34.71,21.71,7.4,1.91,28.32,0.0 +2019-09-14 19:00:00,24.1,77.37,30.28,23.81,8.11,0.88,27.41,24.18,7.79,2.03,24.88,0.0 +2019-09-14 20:00:00,25.44,80.02,35.09,23.55,9.04,0.96,21.4,28.55,9.97,2.29,19.35,0.22 +2019-09-14 21:00:00,29.45,83.85,33.14,25.99,11.48,0.94,21.55,28.37,10.76,2.44,21.98,0.36 +2019-09-14 22:00:00,29.82,86.71,31.35,24.59,9.89,0.95,24.09,25.44,8.3,2.08,20.31,0.64 +2019-09-14 23:00:00,26.45,72.36,27.63,23.93,8.95,0.82,26.72,22.65,7.61,1.82,14.89,0.1 +2019-09-15 00:00:00,24.32,61.58,26.13,23.21,8.98,0.79,26.56,21.39,7.11,1.54,12.55,0.09 +2019-09-15 01:00:00,24.04,50.85,24.82,23.06,9.51,0.77,28.47,20.77,7.17,1.32,15.15,0.0 +2019-09-15 02:00:00,22.69,42.18,22.5,24.64,7.48,0.73,25.89,19.31,6.82,1.07,11.9,0.0 +2019-09-15 03:00:00,19.75,38.49,20.07,26.17,7.8,0.69,20.44,16.67,5.61,0.9,9.43,0.04 +2019-09-15 04:00:00,21.03,37.81,20.17,25.07,6.7,0.65,16.13,16.51,5.45,0.78,7.82,0.0 +2019-09-15 05:00:00,23.83,39.18,21.7,26.46,6.62,0.79,16.71,17.71,5.85,0.78,8.2,0.0 +2019-09-15 06:00:00,25.57,45.58,21.31,24.23,8.45,0.69,17.48,18.93,7.33,0.86,8.13,0.03 +2019-09-15 07:00:00,27.46,51.45,21.97,23.56,8.71,0.76,14.82,20.25,8.56,0.89,11.83,0.19 +2019-09-15 08:00:00,33.1,57.48,21.86,23.52,8.52,0.8,15.55,20.68,9.45,1.22,13.23,0.0 +2019-09-15 09:00:00,35.75,60.9,23.47,22.63,8.35,0.83,16.27,21.91,9.61,1.02,15.19,0.14 +2019-09-15 10:00:00,34.0,62.8,25.04,23.43,9.0,0.86,21.55,24.05,11.06,1.23,14.03,0.87 +2019-09-15 11:00:00,40.36,72.55,24.24,22.61,8.88,0.84,28.03,21.73,8.83,1.25,15.59,0.0 +2019-09-15 12:00:00,44.61,84.15,23.76,25.54,8.75,0.82,35.42,19.66,6.93,1.48,14.87,0.22 +2019-09-15 13:00:00,56.29,77.23,25.28,25.11,8.36,0.86,46.35,22.06,8.63,1.54,17.93,0.91 +2019-09-15 14:00:00,47.09,75.59,27.8,26.09,8.08,0.88,62.07,23.29,7.55,1.64,15.74,1.29 +2019-09-15 15:00:00,49.32,87.47,29.76,26.94,8.51,0.92,56.95,25.31,11.12,1.46,14.56,2.14 +2019-09-15 16:00:00,41.79,80.52,25.14,25.18,8.82,0.76,53.15,20.22,6.62,1.32,13.79,1.08 +2019-09-15 17:00:00,38.57,83.71,26.23,24.67,8.9,0.93,49.65,20.56,5.91,1.25,14.29,0.47 +2019-09-15 18:00:00,35.36,83.68,30.64,23.39,9.02,0.8,42.62,24.62,7.88,1.41,18.87,0.94 +2019-09-15 19:00:00,36.1,89.99,36.99,22.99,8.78,1.03,26.52,30.0,10.36,1.63,15.81,0.48 +2019-09-15 20:00:00,37.99,107.37,39.7,24.21,8.9,1.24,17.94,35.57,15.51,1.97,19.51,0.27 +2019-09-15 21:00:00,42.35,113.54,43.1,24.86,9.38,1.43,14.95,43.03,21.92,2.39,21.92,0.74 +2019-09-15 22:00:00,45.34,119.31,42.78,24.29,9.61,1.48,17.79,46.14,25.73,2.6,23.96,1.02 +2019-09-15 23:00:00,45.7,119.2,41.97,25.57,9.15,1.43,14.68,47.46,27.16,2.54,23.76,0.85 +2019-09-16 00:00:00,45.98,110.46,39.84,23.3,8.73,1.34,14.24,45.13,25.97,2.36,20.26,1.35 +2019-09-16 01:00:00,43.44,101.73,36.17,22.15,8.02,1.19,14.62,42.28,25.98,2.02,19.06,1.31 +2019-09-16 02:00:00,40.66,92.43,34.19,23.57,9.31,1.1,17.24,42.93,26.25,1.89,18.82,0.84 +2019-09-16 03:00:00,42.34,91.35,32.49,26.27,11.57,1.1,19.08,45.04,30.62,1.98,19.87,1.2 +2019-09-16 04:00:00,46.44,92.93,32.49,24.28,9.12,1.07,15.68,44.55,29.68,1.87,18.52,0.79 +2019-09-16 05:00:00,45.88,96.01,31.75,23.64,7.87,1.04,19.71,45.76,31.34,1.87,18.27,0.82 +2019-09-16 06:00:00,48.7,101.31,30.59,23.56,7.76,1.1,17.98,47.4,34.56,1.95,22.65,0.92 +2019-09-16 07:00:00,54.87,110.01,31.31,24.53,8.04,1.23,18.31,49.26,36.41,2.07,24.93,0.59 +2019-09-16 08:00:00,66.46,127.73,34.83,24.56,8.4,1.3,17.76,52.19,38.17,2.45,22.24,1.1 +2019-09-16 09:00:00,64.07,142.07,37.32,26.25,8.52,1.2,18.9,47.42,31.44,2.15,20.05,1.5 +2019-09-16 10:00:00,59.11,164.55,37.39,24.63,8.02,1.08,25.35,37.2,18.93,1.81,16.91,1.66 +2019-09-16 11:00:00,54.51,152.87,32.43,27.0,7.86,0.99,35.48,30.95,12.96,1.89,16.12,2.71 +2019-09-16 12:00:00,52.38,118.85,30.78,28.54,8.13,0.93,48.59,27.6,10.49,1.75,17.11,1.75 +2019-09-16 13:00:00,53.13,117.95,30.64,30.32,7.84,0.9,65.2,23.99,6.39,2.0,20.65,0.6 +2019-09-16 14:00:00,54.0,119.96,28.81,29.88,7.71,0.9,79.5,22.23,5.97,2.06,23.36,0.07 +2019-09-16 15:00:00,58.39,126.42,26.65,29.55,7.86,0.89,77.72,22.39,7.28,2.06,27.07,0.02 +2019-09-16 16:00:00,55.55,124.23,28.31,26.39,7.56,0.82,74.2,23.92,7.79,1.64,26.89,0.0 +2019-09-16 17:00:00,49.44,119.86,29.08,25.79,7.9,0.86,65.15,22.65,6.44,1.6,22.09,0.0 +2019-09-16 18:00:00,52.53,128.64,36.98,26.06,8.48,0.98,54.98,28.61,8.43,1.98,26.88,0.0 +2019-09-16 19:00:00,60.82,148.86,45.55,25.93,8.62,1.18,41.6,34.38,9.69,2.6,37.18,0.12 +2019-09-16 20:00:00,68.85,171.58,50.34,27.69,8.49,1.36,31.94,37.49,10.27,3.33,52.2,0.48 +2019-09-16 21:00:00,76.27,183.05,52.54,27.64,8.26,1.53,26.44,39.95,12.39,3.42,52.92,0.79 +2019-09-16 22:00:00,82.8,186.86,50.08,27.93,7.94,1.51,23.53,39.54,12.88,3.46,40.76,0.79 +2019-09-16 23:00:00,81.89,177.47,47.8,27.08,8.42,1.47,26.43,41.02,16.07,3.84,39.98,0.39 +2019-09-17 00:00:00,81.27,175.53,46.8,26.41,9.92,1.38,29.12,43.54,19.32,3.98,30.28,0.57 +2019-09-17 01:00:00,86.57,185.08,44.55,26.42,10.68,1.28,27.17,42.04,19.13,3.79,30.01,0.45 +2019-09-17 02:00:00,90.35,179.98,41.48,29.94,8.99,1.26,41.16,37.94,16.69,3.5,27.46,0.32 +2019-09-17 03:00:00,85.87,165.24,37.75,30.32,9.32,1.06,27.01,33.31,13.4,2.79,24.47,0.78 +2019-09-17 04:00:00,83.55,152.18,37.14,27.94,8.54,1.03,21.89,33.8,14.11,2.58,26.72,0.75 +2019-09-17 05:00:00,74.79,137.0,34.89,27.18,8.22,0.93,20.88,32.56,13.9,2.03,20.75,1.42 +2019-09-17 06:00:00,63.1,106.19,38.03,26.63,7.84,0.95,16.98,38.39,19.02,1.59,17.93,1.8 +2019-09-17 07:00:00,54.27,101.21,38.79,25.09,8.01,1.07,15.79,47.23,29.34,1.81,17.85,1.01 +2019-09-17 08:00:00,51.01,106.08,38.08,26.75,8.36,1.07,19.41,42.79,23.95,1.89,19.14,1.0 +2019-09-17 09:00:00,50.98,106.81,35.45,24.79,8.28,1.03,23.03,40.6,22.86,1.84,17.04,0.98 +2019-09-17 10:00:00,38.34,91.39,37.22,25.94,7.99,1.07,25.45,37.1,17.94,1.87,15.3,0.23 +2019-09-17 11:00:00,35.23,88.62,38.86,29.71,8.41,1.14,36.1,33.3,12.68,2.17,22.11,0.13 +2019-09-17 12:00:00,43.13,112.13,39.43,31.93,8.5,0.99,55.85,31.67,11.48,4.03,23.23,0.09 +2019-09-17 13:00:00,43.46,120.09,40.78,27.51,9.03,0.97,76.27,30.46,9.17,3.32,22.21,0.08 +2019-09-17 14:00:00,46.45,117.44,30.41,25.79,9.07,1.0,96.82,23.48,7.12,2.76,18.59,0.16 +2019-09-17 15:00:00,50.41,123.26,28.46,25.09,8.86,1.1,90.24,22.45,6.15,2.55,17.28,0.0 +2019-09-17 16:00:00,52.2,127.06,27.84,25.4,8.59,0.9,85.99,22.39,6.52,2.29,19.3,0.0 +2019-09-17 17:00:00,47.7,127.71,26.9,29.44,8.81,0.94,80.24,21.42,6.16,1.76,18.93,0.0 +2019-09-17 18:00:00,44.96,124.31,30.23,28.32,8.21,0.94,63.47,22.81,5.54,1.69,33.57,0.0 +2019-09-17 19:00:00,48.48,135.9,42.62,27.01,8.07,1.19,41.04,31.98,8.51,2.27,31.08,0.0 +2019-09-17 20:00:00,58.65,177.79,51.6,27.53,8.65,1.54,26.01,43.7,16.17,2.82,33.08,0.03 +2019-09-17 21:00:00,67.82,188.01,50.37,30.51,8.31,1.64,24.38,44.16,16.83,3.58,39.94,0.22 +2019-09-17 22:00:00,65.86,172.56,40.17,28.26,8.35,1.28,24.49,32.84,10.52,3.37,37.69,1.46 +2019-09-17 23:00:00,54.92,138.52,38.49,26.31,8.41,1.09,20.59,32.18,11.42,2.52,25.9,0.83 +2019-09-18 00:00:00,51.42,119.48,36.31,26.46,8.13,0.97,18.38,31.29,12.09,2.08,15.82,1.01 +2019-09-18 01:00:00,48.25,106.0,33.05,24.68,7.58,0.87,17.45,27.85,10.08,1.79,13.89,1.48 +2019-09-18 02:00:00,43.21,95.51,31.25,26.96,7.52,0.84,19.31,24.88,7.99,1.69,12.87,0.98 +2019-09-18 03:00:00,40.4,85.4,28.89,29.11,7.73,0.77,16.88,24.9,9.54,1.55,12.63,1.13 +2019-09-18 04:00:00,39.35,82.07,30.24,26.61,7.49,0.85,16.28,25.82,9.7,1.45,12.61,0.8 +2019-09-18 05:00:00,38.46,78.67,28.65,26.8,7.35,0.73,16.94,24.39,8.8,1.24,12.13,0.71 +2019-09-18 06:00:00,40.79,82.92,25.9,27.29,8.47,0.77,20.85,21.79,7.5,1.29,12.8,0.52 +2019-09-18 07:00:00,39.8,86.89,25.15,27.25,8.56,0.7,25.89,20.92,7.26,1.27,10.56,0.0 +2019-09-18 08:00:00,28.13,73.02,30.55,25.8,9.37,0.71,25.31,25.92,9.67,1.2,9.0,0.22 +2019-09-18 09:00:00,23.56,81.04,31.78,27.0,10.13,0.73,28.72,27.35,9.84,1.31,9.98,0.39 +2019-09-18 10:00:00,25.17,91.43,30.35,25.93,9.68,0.88,37.69,25.49,8.77,1.5,13.16,0.06 +2019-09-18 11:00:00,30.52,117.35,30.9,26.31,10.82,0.89,50.2,24.86,7.74,1.95,15.11,0.0 +2019-09-18 12:00:00,32.81,118.29,30.73,23.59,10.97,0.86,63.54,24.56,6.93,2.21,21.68,0.0 +2019-09-18 13:00:00,32.4,113.53,29.68,25.71,12.1,0.86,64.48,24.04,7.09,2.37,18.02,0.0 +2019-09-18 14:00:00,34.15,111.62,29.52,25.52,10.94,0.76,71.91,23.43,6.7,2.2,16.91,0.0 +2019-09-18 15:00:00,32.25,101.37,27.42,25.02,10.87,0.76,72.05,20.84,5.35,2.83,18.96,0.0 +2019-09-18 16:00:00,33.39,100.28,30.73,25.6,9.91,0.77,66.15,23.17,5.81,1.87,15.44,0.0 +2019-09-18 17:00:00,33.44,97.17,31.87,23.85,10.19,1.1,61.65,23.3,5.46,1.83,20.33,0.0 +2019-09-18 18:00:00,34.41,102.79,32.4,23.39,10.64,0.9,53.67,24.14,5.76,1.8,17.41,0.01 +2019-09-18 19:00:00,32.49,103.79,36.0,23.2,10.1,0.98,41.8,26.56,6.44,2.22,19.89,0.1 +2019-09-18 20:00:00,32.48,107.65,37.74,24.43,10.13,0.99,29.38,27.94,6.97,2.45,22.28,0.61 +2019-09-18 21:00:00,32.17,101.07,37.38,24.09,9.82,1.01,25.97,28.57,7.81,2.39,18.73,0.61 +2019-09-18 22:00:00,35.06,94.85,35.03,24.84,9.51,1.01,22.97,26.46,6.99,2.27,16.83,0.54 +2019-09-18 23:00:00,35.66,83.48,29.69,23.47,9.14,0.9,25.04,22.38,5.84,1.82,13.84,0.81 +2019-09-19 00:00:00,31.46,69.7,24.63,22.24,8.86,0.75,22.41,19.51,5.92,1.69,11.78,0.74 +2019-09-19 01:00:00,26.06,56.36,20.9,20.84,7.74,0.83,20.23,17.87,6.06,1.28,9.37,0.31 +2019-09-19 02:00:00,16.54,39.65,17.52,22.25,7.7,0.74,22.65,15.0,5.99,1.02,8.01,0.1 +2019-09-19 03:00:00,10.83,32.27,16.26,23.07,8.04,0.68,22.17,13.97,5.18,0.96,7.75,0.05 +2019-09-19 04:00:00,11.87,26.45,17.06,21.25,7.9,0.59,26.23,14.58,4.86,0.79,7.02,0.0 +2019-09-19 05:00:00,10.79,20.47,16.07,21.98,8.04,0.61,25.15,14.39,6.34,0.78,6.49,0.0 +2019-09-19 06:00:00,11.5,24.46,18.39,21.47,7.83,0.64,20.1,15.75,5.85,0.71,7.05,0.0 +2019-09-19 07:00:00,12.95,28.93,21.85,21.76,8.32,0.7,20.92,17.73,7.11,0.84,7.69,0.0 +2019-09-19 08:00:00,17.39,43.11,24.81,21.48,8.75,0.74,23.32,20.49,7.27,0.99,7.82,0.28 +2019-09-19 09:00:00,24.62,67.81,22.67,21.24,8.87,0.73,23.7,20.44,8.15,1.01,10.16,0.02 +2019-09-19 10:00:00,24.0,60.96,24.08,21.47,9.8,0.78,26.45,21.49,8.58,1.18,9.65,0.06 +2019-09-19 11:00:00,25.36,72.23,23.68,24.41,11.1,0.78,32.94,20.35,8.38,1.33,13.91,0.0 +2019-09-19 12:00:00,26.36,80.19,24.62,25.04,10.58,0.79,36.33,22.36,9.24,1.6,20.5,0.01 +2019-09-19 13:00:00,24.16,80.87,22.83,25.02,9.75,0.75,37.94,19.03,6.89,1.96,25.57,0.0 +2019-09-19 14:00:00,21.65,68.07,22.04,24.89,9.02,0.74,41.93,18.0,5.66,1.65,20.33,0.0 +2019-09-19 15:00:00,20.52,64.69,21.73,24.39,8.94,0.74,43.84,18.19,5.94,1.53,13.8,0.01 +2019-09-19 16:00:00,22.08,68.41,21.29,22.48,8.8,0.74,40.13,18.01,5.86,2.26,18.04,0.02 +2019-09-19 17:00:00,22.81,72.13,21.78,21.5,9.32,0.72,36.85,18.31,6.05,1.93,19.23,0.0 +2019-09-19 18:00:00,21.39,72.0,24.24,20.98,9.26,0.74,30.23,19.42,5.82,1.98,23.56,0.0 +2019-09-19 19:00:00,21.74,74.11,31.46,21.26,9.34,0.91,23.21,25.1,7.4,1.79,19.1,0.0 +2019-09-19 20:00:00,25.8,87.82,35.96,22.03,11.0,1.03,18.43,30.39,10.5,2.31,23.13,0.09 +2019-09-19 21:00:00,30.51,99.14,35.79,22.89,12.42,1.06,22.11,29.42,10.51,2.83,27.65,0.08 +2019-09-19 22:00:00,30.39,94.07,35.92,23.76,11.07,1.03,20.94,29.81,9.96,2.77,24.28,1.11 +2019-09-19 23:00:00,30.95,88.77,34.13,24.74,10.44,0.99,17.94,28.72,9.76,2.38,22.42,1.29 +2019-09-20 00:00:00,30.49,79.64,34.25,24.43,10.33,0.94,20.43,29.14,10.29,2.16,22.22,0.81 +2019-09-20 01:00:00,32.67,74.2,32.21,23.48,10.98,0.89,19.1,29.24,11.67,2.04,24.95,0.54 +2019-09-20 02:00:00,32.72,81.22,31.06,24.73,10.91,0.86,19.39,28.06,11.07,2.17,23.62,0.08 +2019-09-20 03:00:00,39.44,85.67,30.5,26.92,12.08,0.86,21.77,28.71,12.49,2.77,23.34,0.05 +2019-09-20 04:00:00,43.97,91.43,29.34,25.04,10.16,0.83,27.62,28.91,13.27,2.47,23.48,0.14 +2019-09-20 05:00:00,43.05,88.87,28.77,24.3,10.38,0.82,25.96,29.01,13.72,2.07,24.54,0.25 +2019-09-20 06:00:00,42.64,88.55,28.32,24.53,11.49,0.86,25.41,33.21,19.26,2.19,22.22,0.04 +2019-09-20 07:00:00,51.2,103.6,28.26,25.22,11.13,1.01,21.36,37.26,24.16,2.63,25.39,0.12 +2019-09-20 08:00:00,59.94,129.71,32.58,26.41,12.48,1.09,28.04,38.79,23.39,3.03,26.94,0.1 +2019-09-20 09:00:00,57.15,153.66,31.41,26.4,13.0,0.98,34.24,29.65,13.26,2.4,23.22,0.26 +2019-09-20 10:00:00,46.82,126.69,29.07,26.61,12.55,0.9,35.08,25.93,10.24,1.93,18.67,0.12 +2019-09-20 11:00:00,50.56,117.55,29.12,24.52,11.81,0.83,37.02,24.88,8.86,1.69,15.96,0.04 +2019-09-20 12:00:00,46.15,112.24,26.17,25.53,10.67,0.78,40.62,21.82,7.42,1.55,17.11,0.24 +2019-09-20 13:00:00,30.79,96.73,25.61,26.52,9.71,0.71,42.2,21.12,7.05,1.48,12.12,0.28 +2019-09-20 14:00:00,25.67,87.73,23.69,26.49,9.01,0.71,44.02,19.73,6.57,1.36,11.05,0.0 +2019-09-20 15:00:00,27.8,79.19,23.52,26.28,9.05,0.72,47.37,19.86,7.09,1.48,13.19,0.01 +2019-09-20 16:00:00,29.5,86.06,25.0,24.94,9.22,0.76,48.51,21.15,7.23,1.68,24.31,0.0 +2019-09-20 17:00:00,30.14,100.95,26.7,23.04,9.67,0.78,44.87,21.19,5.97,1.46,23.14,0.0 +2019-09-20 18:00:00,29.92,94.49,31.13,22.74,10.13,0.85,39.33,24.54,7.21,1.94,27.06,0.02 +2019-09-20 19:00:00,33.8,103.51,39.35,23.4,11.09,1.03,24.94,31.03,9.4,2.26,16.68,0.02 +2019-09-20 20:00:00,39.4,126.05,43.31,22.92,11.73,1.27,19.02,39.24,16.53,2.73,21.23,0.26 +2019-09-20 21:00:00,44.74,149.73,45.39,23.87,10.79,1.44,16.79,44.73,21.45,3.1,32.37,0.34 +2019-09-20 22:00:00,49.04,149.23,44.66,24.6,10.63,1.51,16.04,49.84,27.76,3.51,28.58,1.33 +2019-09-20 23:00:00,50.4,148.59,42.11,24.96,10.5,1.43,15.0,50.62,29.74,3.16,31.65,1.75 +2019-09-21 00:00:00,50.21,135.05,40.26,25.29,10.16,1.24,14.14,42.34,21.53,2.7,23.35,1.59 +2019-09-21 01:00:00,52.31,122.88,37.41,24.55,9.5,1.04,13.08,38.91,19.31,2.47,19.82,1.77 +2019-09-21 02:00:00,42.71,98.97,34.79,25.53,8.97,0.91,13.81,32.3,13.51,2.04,15.9,2.06 +2019-09-21 03:00:00,34.95,80.33,32.46,26.24,9.3,0.83,12.26,29.67,12.52,1.62,14.43,2.33 +2019-09-21 04:00:00,34.59,77.24,30.56,24.37,9.35,0.84,12.03,28.42,12.17,1.6,13.18,1.69 +2019-09-21 05:00:00,37.55,80.77,29.94,24.05,8.98,0.82,12.91,30.8,14.82,1.59,14.27,1.5 +2019-09-21 06:00:00,36.0,81.45,30.51,23.87,8.63,0.85,12.29,33.82,17.9,1.64,14.88,1.88 +2019-09-21 07:00:00,39.45,89.33,31.98,23.85,8.85,0.95,11.86,38.96,23.08,1.79,15.61,1.88 +2019-09-21 08:00:00,43.09,109.18,33.16,25.19,9.44,0.95,13.64,38.54,22.09,1.91,18.62,2.35 +2019-09-21 09:00:00,47.05,126.05,31.11,24.28,10.11,0.89,18.57,30.99,15.0,1.85,18.69,2.02 +2019-09-21 10:00:00,40.77,104.81,27.62,24.41,9.94,0.82,25.1,25.38,10.43,1.49,13.22,0.76 +2019-09-21 11:00:00,40.6,102.69,25.88,24.13,11.03,0.8,35.17,22.48,8.26,1.41,13.68,0.41 +2019-09-21 12:00:00,39.95,100.39,24.81,23.98,10.85,0.78,47.37,19.74,6.55,1.46,23.87,0.04 +2019-09-21 13:00:00,40.46,99.12,23.7,25.16,10.54,0.76,61.95,19.07,6.52,1.6,21.27,0.06 +2019-09-21 14:00:00,43.75,107.57,25.68,26.96,10.69,0.79,68.31,19.83,6.07,2.05,20.52,0.12 +2019-09-21 15:00:00,45.41,107.07,25.87,27.37,11.05,0.78,82.69,19.36,5.29,1.85,21.32,0.0 +2019-09-21 16:00:00,49.31,113.78,26.98,25.28,11.35,0.79,79.23,19.58,4.99,1.79,23.93,0.0 +2019-09-21 17:00:00,47.01,121.12,25.75,23.25,10.33,0.73,51.43,21.95,8.49,1.95,30.68,0.0 +2019-09-21 18:00:00,33.96,101.89,25.29,21.69,8.96,0.8,28.47,25.16,12.22,1.72,32.94,0.38 +2019-09-21 19:00:00,23.85,58.84,36.15,22.02,8.3,1.14,16.95,37.01,28.25,2.43,24.6,0.0 +2019-09-21 20:00:00,24.71,52.98,39.26,21.52,9.06,1.42,13.2,44.41,26.08,2.73,44.23,0.13 +2019-09-21 21:00:00,30.1,71.13,39.49,24.34,8.24,1.52,12.81,50.43,32.01,3.02,34.07,0.34 +2019-09-21 22:00:00,31.0,82.47,37.51,25.19,8.4,1.62,14.02,57.19,41.25,3.81,32.99,0.17 +2019-09-21 23:00:00,32.82,85.82,38.07,24.36,9.04,1.62,13.03,61.36,45.81,3.51,30.73,1.95 +2019-09-22 00:00:00,33.24,84.12,39.98,25.33,9.37,1.39,12.2,63.4,46.71,3.22,27.11,2.9 +2019-09-22 01:00:00,32.02,78.02,35.96,25.1,8.71,1.12,12.59,50.67,34.76,2.81,21.48,3.36 +2019-09-22 02:00:00,23.39,62.01,35.35,25.86,7.95,0.95,12.2,44.47,27.51,2.21,16.18,1.51 +2019-09-22 03:00:00,20.82,49.83,33.2,27.68,8.51,0.81,11.7,40.93,26.15,1.89,13.28,1.98 +2019-09-22 04:00:00,23.06,49.82,31.58,26.07,8.07,0.77,11.89,39.53,24.53,1.58,11.4,1.84 +2019-09-22 05:00:00,23.74,56.28,28.19,25.0,8.14,0.79,12.6,39.35,26.64,1.69,12.74,2.01 +2019-09-22 06:00:00,23.04,59.19,27.98,24.76,8.38,0.83,13.26,43.17,31.03,1.7,18.64,1.48 +2019-09-22 07:00:00,26.94,62.01,26.96,25.11,9.28,0.91,15.2,41.4,29.89,1.83,20.31,1.72 +2019-09-22 08:00:00,33.69,75.64,27.04,26.35,9.89,0.95,23.57,35.44,22.26,1.96,18.93,1.96 +2019-09-22 09:00:00,42.57,85.28,26.59,25.76,9.68,0.88,20.67,28.77,15.32,2.31,17.84,1.35 +2019-09-22 10:00:00,41.06,79.15,25.3,25.5,9.45,0.82,21.53,25.66,12.39,1.69,13.21,0.94 +2019-09-22 11:00:00,34.04,69.18,23.69,26.09,9.46,0.8,22.06,22.89,10.25,1.62,13.06,0.27 +2019-09-22 12:00:00,23.35,53.08,22.84,26.42,9.14,0.8,27.0,21.09,8.74,1.36,12.88,0.07 +2019-09-22 13:00:00,16.22,47.33,25.95,26.33,8.87,0.82,29.41,22.1,8.55,1.49,16.35,0.13 +2019-09-22 14:00:00,17.12,49.45,30.65,27.33,9.48,0.79,30.75,25.07,9.22,1.46,16.22,0.0 +2019-09-22 15:00:00,17.23,51.2,30.41,27.52,9.66,0.83,31.22,25.68,9.5,1.57,14.53,0.32 +2019-09-22 16:00:00,16.5,56.71,29.81,25.83,10.09,0.76,30.69,24.61,8.95,1.47,14.76,0.96 +2019-09-22 17:00:00,19.35,58.11,27.71,25.85,10.34,0.78,34.17,22.44,7.21,1.77,20.9,0.21 +2019-09-22 18:00:00,22.38,62.47,29.72,27.18,10.0,0.81,31.88,23.49,7.35,1.73,24.71,0.77 +2019-09-22 19:00:00,24.77,71.68,34.25,27.07,10.46,0.93,25.79,27.15,8.77,1.77,23.04,0.18 +2019-09-22 20:00:00,31.58,81.89,37.33,26.93,10.55,1.05,27.35,31.74,12.11,2.13,20.84,0.24 +2019-09-22 21:00:00,31.9,81.69,36.06,26.37,10.07,1.04,19.1,32.1,13.34,2.18,19.96,0.28 +2019-09-22 22:00:00,28.44,76.64,34.9,26.59,9.27,1.08,17.13,31.7,13.66,2.0,18.76,0.6 +2019-09-22 23:00:00,29.81,74.71,34.38,26.74,8.86,1.02,13.61,31.97,14.38,1.96,15.45,0.71 +2019-09-23 00:00:00,29.3,85.4,32.36,25.9,8.87,0.95,13.92,30.82,14.09,1.88,15.93,0.61 +2019-09-23 01:00:00,28.08,67.08,28.72,26.15,9.41,0.82,17.96,28.09,12.88,1.68,13.04,0.41 +2019-09-23 02:00:00,27.08,61.47,25.47,27.35,9.51,0.74,18.36,23.41,9.46,1.47,12.22,0.13 +2019-09-23 03:00:00,23.41,49.36,22.67,26.74,10.54,0.67,20.64,22.58,10.5,1.14,8.71,0.06 +2019-09-23 04:00:00,19.91,43.77,21.96,25.18,9.52,0.67,19.37,20.68,9.01,1.12,7.95,0.0 +2019-09-23 05:00:00,20.59,39.82,22.2,24.07,9.0,0.64,15.95,20.4,8.45,1.09,8.49,0.0 +2019-09-23 06:00:00,21.09,43.47,23.95,23.78,8.89,0.62,20.41,22.47,9.86,1.1,10.31,0.0 +2019-09-23 07:00:00,24.22,51.5,25.77,24.34,9.8,0.8,17.53,26.91,13.86,1.46,12.27,0.0 +2019-09-23 08:00:00,32.48,70.86,25.79,25.19,9.68,0.89,14.03,27.53,14.86,1.54,18.26,0.01 +2019-09-23 09:00:00,38.27,83.51,25.61,26.2,10.12,0.89,22.56,26.82,13.97,1.57,14.84,0.0 +2019-09-23 10:00:00,43.38,96.1,25.48,26.16,10.24,0.88,28.12,25.46,12.06,1.45,11.28,0.01 +2019-09-23 11:00:00,40.85,88.18,28.77,26.67,11.42,0.9,29.74,26.61,10.86,1.64,15.54,0.0 +2019-09-23 12:00:00,39.24,89.37,29.3,25.8,12.68,0.92,32.53,26.4,9.91,1.68,20.1,0.0 +2019-09-23 13:00:00,39.15,90.74,29.61,25.32,11.64,0.94,44.41,23.6,7.2,1.8,17.87,0.0 +2019-09-23 14:00:00,40.5,92.96,27.47,24.76,11.13,0.88,60.5,22.35,6.47,1.8,18.52,0.05 +2019-09-23 15:00:00,41.33,96.23,26.55,25.72,10.65,0.87,70.58,22.46,7.2,1.87,18.26,0.01 +2019-09-23 16:00:00,44.42,94.74,26.45,25.13,10.45,0.86,74.74,21.42,5.91,1.91,20.61,0.14 +2019-09-23 17:00:00,43.89,102.11,27.8,23.86,9.54,0.83,71.93,22.06,5.64,1.87,20.02,0.03 +2019-09-23 18:00:00,41.89,100.05,34.03,24.69,8.99,0.99,52.76,27.18,7.19,2.19,27.38,0.01 +2019-09-23 19:00:00,40.15,103.28,39.19,24.8,8.87,1.15,29.01,31.57,9.18,2.63,30.73,0.09 +2019-09-23 20:00:00,38.84,110.66,42.75,24.73,9.45,1.36,17.2,38.42,15.35,3.91,35.27,0.39 +2019-09-23 21:00:00,36.87,120.7,44.69,24.8,9.34,1.46,12.98,44.75,21.61,3.88,36.71,2.34 +2019-09-23 22:00:00,37.14,118.9,44.05,25.36,9.04,1.36,12.25,42.48,19.36,3.97,32.02,3.94 +2019-09-23 23:00:00,34.97,99.57,39.94,26.09,8.91,1.19,14.39,38.1,17.06,3.63,22.99,3.41 +2019-09-24 00:00:00,35.4,88.76,36.4,25.87,8.39,1.03,15.35,36.45,17.17,2.83,21.39,1.91 +2019-09-24 01:00:00,32.28,80.52,32.96,23.66,7.88,0.91,13.52,33.28,15.33,2.34,19.6,1.67 +2019-09-24 02:00:00,33.67,71.64,31.18,24.86,7.3,0.86,13.9,31.17,14.24,1.75,16.58,1.7 +2019-09-24 03:00:00,29.44,64.88,30.08,25.07,8.14,0.82,14.21,32.95,17.0,2.03,15.63,1.69 +2019-09-24 04:00:00,28.68,63.23,29.35,23.57,7.59,0.81,12.83,33.04,17.56,1.84,13.56,1.65 +2019-09-24 05:00:00,28.51,61.79,29.18,23.43,7.46,0.79,12.56,34.86,20.14,1.54,15.72,1.55 +2019-09-24 06:00:00,28.31,64.42,30.72,24.81,7.35,0.83,13.13,39.48,24.63,1.72,13.69,1.85 +2019-09-24 07:00:00,31.3,75.05,31.74,25.92,7.78,1.05,16.87,46.07,31.93,1.92,14.53,0.75 +2019-09-24 08:00:00,41.19,99.12,37.06,24.17,8.89,1.16,23.12,48.81,31.77,2.3,18.3,1.21 +2019-09-24 09:00:00,52.67,133.48,41.65,26.23,9.62,1.11,37.26,43.77,22.33,2.71,23.56,1.21 +2019-09-24 10:00:00,57.5,128.13,39.0,25.13,10.82,1.02,50.19,35.41,14.29,2.77,21.58,0.73 +2019-09-24 11:00:00,54.37,132.54,48.1,25.8,11.49,0.99,44.47,30.67,10.2,5.64,24.12,0.74 +2019-09-24 12:00:00,48.69,124.71,38.16,25.66,15.28,0.93,50.61,25.67,8.16,4.33,23.26,0.95 +2019-09-24 13:00:00,43.75,122.28,32.55,27.49,13.13,0.86,53.41,21.52,13.03,2.5,20.92,0.61 +2019-09-24 14:00:00,38.57,94.79,27.08,26.36,11.49,0.85,54.69,25.18,10.38,2.36,20.86,0.06 +2019-09-24 15:00:00,35.13,82.53,23.92,25.47,9.95,0.83,52.79,23.31,9.78,2.07,16.94,0.02 +2019-09-24 16:00:00,31.55,72.73,24.69,25.5,9.25,0.76,57.45,19.79,5.64,1.86,18.84,0.03 +2019-09-24 17:00:00,32.6,81.75,28.88,25.34,9.17,0.83,46.75,22.34,6.44,2.05,18.84,0.0 +2019-09-24 18:00:00,30.62,105.27,31.76,24.43,8.66,0.84,33.35,26.88,9.42,2.15,28.48,0.27 +2019-09-24 19:00:00,25.82,113.76,38.02,25.3,7.91,0.99,20.58,31.73,11.46,2.23,27.46,0.11 +2019-09-24 20:00:00,24.72,106.36,43.49,26.64,7.87,1.19,14.17,40.08,17.48,2.78,25.26,0.77 +2019-09-24 21:00:00,30.06,114.25,45.45,28.83,8.13,1.38,13.16,47.17,24.71,3.23,31.69,0.99 +2019-09-24 22:00:00,32.97,120.68,45.43,28.02,8.66,1.44,14.44,50.52,29.33,3.35,30.08,1.65 +2019-09-24 23:00:00,33.21,106.54,42.75,27.06,8.25,1.18,15.15,39.1,17.76,2.8,25.67,1.9 +2019-09-25 00:00:00,32.35,86.42,38.08,25.32,7.9,1.0,15.13,33.7,14.43,2.26,19.88,2.01 +2019-09-25 01:00:00,30.65,75.75,35.0,24.51,7.9,0.88,13.89,29.04,10.76,1.93,15.31,1.6 +2019-09-25 02:00:00,28.46,64.56,31.14,26.28,7.73,0.83,15.43,25.44,9.0,1.71,14.0,1.59 +2019-09-25 03:00:00,25.45,57.88,29.98,25.7,7.83,0.76,14.0,26.21,10.48,1.73,14.39,1.81 +2019-09-25 04:00:00,25.26,56.99,28.44,24.63,7.3,0.75,13.43,25.28,10.33,1.5,11.87,1.89 +2019-09-25 05:00:00,24.95,56.3,28.82,24.61,7.49,0.81,14.16,27.52,13.14,1.41,13.22,1.65 +2019-09-25 06:00:00,29.0,65.93,28.22,23.93,8.36,0.94,15.0,31.93,18.57,1.59,16.1,1.23 +2019-09-25 07:00:00,35.77,80.28,28.15,24.44,8.11,1.04,17.29,37.0,24.65,1.71,17.81,1.32 +2019-09-25 08:00:00,45.78,108.73,29.84,25.46,8.34,1.08,26.62,37.48,23.98,2.04,19.6,0.92 +2019-09-25 09:00:00,54.31,123.29,27.88,25.65,10.29,1.06,29.12,27.67,13.53,2.13,16.88,1.08 +2019-09-25 10:00:00,46.82,104.22,25.92,25.16,9.91,0.87,30.35,23.31,9.76,1.78,14.13,0.78 +2019-09-25 11:00:00,40.51,98.83,24.61,25.46,11.55,0.88,38.28,21.07,7.43,1.86,16.09,0.56 +2019-09-25 12:00:00,33.05,93.73,25.2,26.44,11.83,0.82,45.99,20.94,6.93,1.89,18.99,0.5 +2019-09-25 13:00:00,27.63,83.8,23.34,26.43,11.06,0.75,56.05,19.08,5.66,1.59,14.4,0.55 +2019-09-25 14:00:00,27.15,82.92,22.59,25.5,10.66,0.68,56.71,18.39,5.56,1.63,15.79,0.24 +2019-09-25 15:00:00,25.32,74.16,21.99,25.03,9.46,0.66,53.39,18.12,5.51,1.45,18.19,0.13 +2019-09-25 16:00:00,25.01,70.88,21.83,24.39,8.74,0.68,54.92,18.15,5.56,1.39,20.04,0.07 +2019-09-25 17:00:00,25.42,76.02,23.95,22.98,8.4,0.74,48.13,18.78,5.03,1.42,20.95,0.06 +2019-09-25 18:00:00,23.44,122.99,26.93,22.93,8.37,0.79,35.09,21.22,6.58,1.51,20.78,0.06 +2019-09-25 19:00:00,23.17,147.33,34.06,24.43,8.68,0.91,26.37,27.45,9.08,1.92,20.82,0.09 +2019-09-25 20:00:00,24.74,84.39,38.99,24.37,8.35,1.07,17.82,31.76,11.14,2.5,25.89,0.78 +2019-09-25 21:00:00,26.2,83.95,41.78,24.8,8.62,1.21,15.68,35.68,13.72,2.93,23.87,1.49 +2019-09-25 22:00:00,24.89,86.31,42.7,24.55,8.67,1.26,13.61,39.35,17.06,2.88,24.03,2.26 +2019-09-25 23:00:00,27.05,85.87,40.26,24.24,8.98,1.21,18.17,39.35,18.73,2.53,22.35,2.77 +2019-09-26 00:00:00,32.2,87.6,41.46,24.94,12.04,1.19,24.52,41.8,20.43,2.5,23.03,2.96 +2019-09-26 01:00:00,34.0,87.6,35.59,24.19,12.91,1.09,22.42,34.05,15.15,2.9,27.72,2.7 +2019-09-26 02:00:00,30.55,74.58,29.12,25.7,13.2,0.78,19.48,26.65,11.17,2.21,23.26,2.48 +2019-09-26 03:00:00,28.12,63.88,26.08,26.98,11.11,0.75,24.83,24.59,10.79,1.72,19.82,2.01 +2019-09-26 04:00:00,27.47,57.89,25.37,25.08,10.39,0.69,18.29,23.37,10.1,1.7,18.99,1.1 +2019-09-26 05:00:00,23.69,50.51,22.75,24.56,9.75,0.7,27.34,21.39,9.37,1.44,17.27,1.19 +2019-09-26 06:00:00,19.77,47.8,21.36,23.28,9.45,0.65,22.51,19.65,8.54,1.2,12.31,0.83 +2019-09-26 07:00:00,19.99,46.57,21.75,22.66,10.06,0.68,16.62,20.77,9.48,1.1,13.13,0.6 +2019-09-26 08:00:00,22.15,56.32,20.35,22.57,9.4,0.72,20.08,21.21,11.12,1.1,10.64,0.71 +2019-09-26 09:00:00,23.52,59.95,21.9,22.89,9.7,0.74,23.79,22.9,11.81,1.09,10.3,0.43 +2019-09-26 10:00:00,23.78,68.1,22.03,23.3,10.05,0.74,21.29,22.61,11.36,1.11,10.13,0.25 +2019-09-26 11:00:00,21.45,72.51,23.43,24.16,11.37,0.74,25.52,23.27,10.9,1.29,13.09,0.1 +2019-09-26 12:00:00,22.09,70.3,23.1,24.88,11.72,0.72,27.85,21.34,8.68,1.47,14.83,0.01 +2019-09-26 13:00:00,21.22,68.03,22.47,25.51,10.79,0.73,32.71,20.46,7.93,1.38,20.22,0.54 +2019-09-26 14:00:00,19.19,61.32,24.03,25.75,10.41,0.72,32.4,21.1,7.61,1.87,14.62,0.16 +2019-09-26 15:00:00,19.0,59.73,25.63,23.88,9.39,0.64,29.28,25.73,12.95,1.97,17.93,0.0 +2019-09-26 16:00:00,16.37,59.02,22.86,22.94,9.11,0.65,31.03,20.47,8.0,1.72,16.1,0.03 +2019-09-26 17:00:00,14.73,55.44,27.19,22.2,10.89,0.68,30.55,24.11,10.95,1.86,24.21,0.07 +2019-09-26 18:00:00,14.35,56.22,30.15,21.77,10.35,0.72,27.15,27.08,10.26,1.38,19.47,0.0 +2019-09-26 19:00:00,16.05,66.7,33.85,24.0,9.61,0.9,24.71,31.74,13.72,2.28,26.18,0.14 +2019-09-26 20:00:00,18.91,88.12,34.32,23.8,9.69,1.08,16.08,35.12,17.44,2.75,29.39,0.23 +2019-09-26 21:00:00,24.5,98.14,36.02,23.58,9.21,1.25,17.62,40.47,24.98,3.55,35.6,0.77 +2019-09-26 22:00:00,28.54,113.04,34.58,24.27,9.76,1.31,17.88,42.71,26.44,3.77,43.26,0.59 +2019-09-26 23:00:00,28.02,98.5,28.7,24.08,10.07,0.97,25.93,28.36,13.79,2.86,32.17,0.87 +2019-09-27 00:00:00,20.22,66.34,24.07,22.34,11.29,0.76,30.77,22.3,9.98,1.83,16.44,0.54 +2019-09-27 01:00:00,14.6,41.96,23.05,20.98,12.86,0.69,27.02,19.46,8.18,1.23,12.81,0.57 +2019-09-27 02:00:00,12.76,31.73,20.7,22.34,12.99,0.64,33.77,18.02,7.43,1.02,11.47,0.09 +2019-09-27 03:00:00,9.74,25.66,20.19,23.77,13.86,0.64,30.65,17.78,7.59,1.02,9.97,0.33 +2019-09-27 04:00:00,11.01,25.9,19.75,22.34,10.54,0.63,18.06,18.8,8.87,0.97,12.42,0.3 +2019-09-27 05:00:00,11.88,29.4,20.53,22.09,9.52,0.64,18.43,18.55,8.05,1.06,12.95,0.42 +2019-09-27 06:00:00,11.88,28.68,19.89,21.38,9.52,0.61,15.84,18.46,8.09,0.84,12.75,0.2 +2019-09-27 07:00:00,12.76,29.1,21.63,21.33,9.78,0.64,18.14,20.42,9.57,0.86,11.44,0.11 +2019-09-27 08:00:00,14.58,41.27,23.16,20.05,10.48,0.65,16.42,22.85,11.79,0.96,13.16,0.01 +2019-09-27 09:00:00,16.19,66.33,22.39,20.59,10.11,0.71,17.87,22.39,11.72,1.14,13.53,0.07 +2019-09-27 10:00:00,16.8,55.87,23.33,19.36,9.91,0.75,17.24,23.51,12.31,1.67,13.54,0.0 +2019-09-27 11:00:00,15.41,72.01,23.47,21.18,10.01,0.75,19.07,23.49,11.15,1.93,19.75,0.0 +2019-09-27 12:00:00,17.62,78.46,23.94,24.36,9.81,0.73,24.7,22.67,9.54,3.17,28.52,0.2 +2019-09-27 13:00:00,17.83,77.16,24.14,24.51,9.95,0.86,29.27,21.84,8.59,2.99,29.67,0.15 +2019-09-27 14:00:00,18.74,73.03,23.32,24.94,9.21,0.77,33.05,20.49,7.39,2.75,17.72,0.12 +2019-09-27 15:00:00,17.72,65.23,23.28,24.14,9.86,0.72,30.42,20.81,7.85,2.46,16.57,0.11 +2019-09-27 16:00:00,14.59,60.8,22.47,22.24,9.21,0.7,29.36,20.62,8.0,2.31,17.05,0.03 +2019-09-27 17:00:00,12.64,56.38,23.53,22.93,9.28,0.84,27.04,20.76,7.66,2.14,19.89,0.02 +2019-09-27 18:00:00,13.76,59.9,26.78,22.83,9.41,0.85,24.46,23.1,8.22,2.37,16.47,0.01 +2019-09-27 19:00:00,16.41,64.61,30.37,23.45,9.88,0.96,24.28,25.72,10.06,2.78,24.01,0.13 +2019-09-27 20:00:00,18.41,72.12,33.31,22.4,9.29,1.06,21.67,30.89,13.57,3.39,30.77,0.15 +2019-09-27 21:00:00,21.2,85.03,32.97,22.16,8.99,1.14,18.17,32.15,15.41,3.78,31.64,0.13 +2019-09-27 22:00:00,20.58,83.7,32.29,21.66,9.47,1.09,18.22,31.45,15.07,3.86,27.99,0.46 +2019-09-27 23:00:00,18.59,70.42,29.91,22.26,12.04,0.97,21.07,27.82,12.43,3.59,19.97,0.47 +2019-09-28 00:00:00,18.44,57.9,30.98,21.75,10.92,0.9,28.19,28.93,12.81,3.1,16.95,0.41 +2019-09-28 01:00:00,19.28,51.2,28.25,21.74,10.93,0.81,22.37,27.62,12.72,2.84,15.93,0.63 +2019-09-28 02:00:00,18.27,45.96,26.48,24.57,9.89,0.77,18.3,23.79,10.2,2.91,15.64,0.42 +2019-09-28 03:00:00,19.1,46.46,26.34,23.02,10.71,0.73,18.99,24.48,10.86,2.79,16.45,0.59 +2019-09-28 04:00:00,23.02,50.9,25.85,21.86,10.33,0.76,16.57,24.27,11.08,2.73,16.09,0.7 +2019-09-28 05:00:00,23.06,48.71,25.71,21.44,9.98,0.77,16.65,24.79,11.37,2.82,14.14,0.33 +2019-09-28 06:00:00,27.09,46.75,25.87,20.44,10.06,0.76,18.01,27.26,14.26,2.35,13.38,0.24 +2019-09-28 07:00:00,26.04,53.48,25.42,21.09,9.59,0.8,18.36,28.23,16.01,2.47,16.5,0.44 +2019-09-28 08:00:00,27.11,64.38,25.46,22.39,10.67,0.87,19.67,30.25,18.28,2.61,15.71,0.29 +2019-09-28 09:00:00,29.88,81.3,25.27,22.4,12.22,0.88,17.93,27.03,14.51,2.73,13.75,0.55 +2019-09-28 10:00:00,27.77,75.73,24.2,22.35,11.63,0.84,20.85,24.73,13.11,2.89,12.95,0.34 +2019-09-28 11:00:00,29.43,76.43,24.14,22.9,11.44,0.8,25.16,23.51,10.93,2.76,16.63,0.28 +2019-09-28 12:00:00,29.08,83.38,23.92,22.5,9.74,0.71,27.95,22.56,9.16,2.69,19.61,0.05 +2019-09-28 13:00:00,21.33,80.59,22.95,21.93,8.43,0.65,30.05,19.69,7.61,2.68,22.69,0.14 +2019-09-28 14:00:00,18.98,78.43,23.44,20.77,8.17,0.62,29.61,19.83,7.25,2.74,20.05,0.11 +2019-09-28 15:00:00,17.16,64.31,21.85,21.5,7.89,0.63,29.62,18.26,6.88,2.82,27.29,0.14 +2019-09-28 16:00:00,16.73,69.61,23.31,22.26,8.61,0.66,29.2,19.67,7.41,2.62,26.42,0.18 +2019-09-28 17:00:00,15.74,60.64,23.55,20.9,8.84,0.64,30.0,20.98,9.15,2.24,24.56,0.1 +2019-09-28 18:00:00,17.31,62.96,26.83,21.19,8.89,0.67,26.53,23.4,9.07,2.43,17.84,0.24 +2019-09-28 19:00:00,17.62,69.14,30.54,21.53,9.54,0.76,18.84,28.08,12.71,2.47,25.65,0.51 +2019-09-28 20:00:00,20.96,78.94,32.16,21.59,11.63,0.95,19.12,32.05,16.58,3.06,23.54,0.54 +2019-09-28 21:00:00,25.27,92.92,33.15,21.96,11.04,0.97,14.43,36.06,20.61,4.32,36.28,0.6 +2019-09-28 22:00:00,28.35,98.15,28.49,22.43,9.77,0.87,16.16,27.72,13.76,3.8,30.71,0.52 +2019-09-28 23:00:00,23.34,69.17,24.12,21.99,9.41,0.72,20.73,22.16,9.97,3.27,20.51,0.43 +2019-09-29 00:00:00,16.04,48.65,22.92,21.55,9.48,0.65,22.59,19.63,8.12,2.28,12.88,0.3 +2019-09-29 01:00:00,12.39,35.81,20.33,20.94,9.47,0.64,24.11,16.92,6.47,1.71,9.23,0.14 +2019-09-29 02:00:00,10.06,23.76,21.12,22.6,8.55,0.64,21.47,16.94,5.98,1.54,9.86,0.14 +2019-09-29 03:00:00,9.71,20.53,21.02,23.26,9.09,0.68,18.51,18.02,7.62,1.42,10.09,0.18 +2019-09-29 04:00:00,10.19,20.9,21.22,23.11,8.85,0.67,18.68,17.85,6.93,1.43,12.55,0.17 +2019-09-29 05:00:00,11.31,25.15,20.5,22.11,8.47,0.66,16.56,17.68,6.99,1.37,11.57,0.13 +2019-09-29 06:00:00,12.46,27.39,19.79,21.44,8.08,0.67,15.21,17.88,7.61,1.4,11.68,0.21 +2019-09-29 07:00:00,13.84,32.62,20.69,22.09,8.92,0.71,14.75,18.65,8.04,1.38,10.67,0.14 +2019-09-29 08:00:00,15.28,38.74,20.11,21.49,8.08,0.74,15.76,19.6,9.52,1.53,9.8,0.11 +2019-09-29 09:00:00,15.83,44.07,19.76,21.08,8.6,0.74,15.87,19.04,9.27,1.55,8.11,0.09 +2019-09-29 10:00:00,16.68,44.66,20.75,21.44,9.77,0.75,18.58,20.03,9.91,1.57,8.52,0.09 +2019-09-29 11:00:00,18.3,52.69,20.62,22.11,9.06,0.74,21.94,19.67,9.41,1.73,9.81,0.06 +2019-09-29 12:00:00,22.07,62.31,20.31,23.31,8.84,0.72,26.52,18.33,7.91,1.72,9.71,0.05 +2019-09-29 13:00:00,20.82,63.88,21.22,23.68,9.1,0.72,32.42,18.35,7.44,1.77,11.22,0.05 +2019-09-29 14:00:00,19.75,67.25,21.65,22.55,8.97,0.71,36.49,18.03,6.49,1.92,17.05,0.16 +2019-09-29 15:00:00,21.09,71.39,27.06,21.63,9.03,0.7,40.78,17.46,5.98,2.01,14.27,0.1 +2019-09-29 16:00:00,23.72,72.72,20.78,22.18,8.61,0.73,43.21,16.85,5.77,1.99,14.38,0.05 +2019-09-29 17:00:00,24.98,73.06,23.55,21.47,8.11,0.74,37.95,18.92,6.16,2.04,17.59,0.02 +2019-09-29 18:00:00,20.06,68.89,26.08,21.01,8.84,0.79,26.99,21.35,7.34,1.94,17.39,0.07 +2019-09-29 19:00:00,17.73,73.83,28.0,21.44,9.29,0.85,20.44,23.07,8.4,2.04,18.83,0.14 +2019-09-29 20:00:00,19.1,73.66,29.68,21.95,9.85,0.88,18.54,27.24,12.53,2.43,18.25,0.13 +2019-09-29 21:00:00,19.14,66.58,28.72,21.83,9.2,0.9,15.09,25.88,11.66,2.49,16.38,0.25 +2019-09-29 22:00:00,18.52,63.65,27.05,21.63,8.25,0.85,12.82,23.95,10.76,2.36,12.5,0.25 +2019-09-29 23:00:00,16.76,52.62,25.24,21.9,7.99,0.82,12.85,21.49,8.82,2.27,10.79,0.29 +2019-09-30 00:00:00,16.0,42.5,25.18,20.95,7.34,0.75,13.28,21.62,9.06,2.03,9.03,0.27 +2019-09-30 01:00:00,16.08,38.48,23.59,20.7,6.97,0.74,12.56,21.33,9.45,1.8,7.71,0.26 +2019-09-30 02:00:00,15.46,34.58,22.01,22.62,7.16,0.68,14.87,19.01,7.76,1.69,7.31,0.36 +2019-09-30 03:00:00,16.37,31.57,22.35,22.8,7.46,0.69,15.75,19.69,8.43,1.52,6.37,0.18 +2019-09-30 04:00:00,13.78,28.09,20.79,21.73,6.88,0.64,13.56,18.92,8.08,1.39,6.34,0.2 +2019-09-30 05:00:00,13.5,28.92,20.74,21.11,6.9,0.62,13.44,19.17,8.17,1.37,6.18,0.11 +2019-09-30 06:00:00,14.43,31.21,20.94,21.4,6.98,0.75,13.51,20.96,9.59,1.34,6.04,0.11 +2019-09-30 07:00:00,15.52,35.54,21.39,21.08,7.08,0.74,12.46,21.2,10.81,1.34,6.23,0.2 +2019-09-30 08:00:00,19.45,69.65,23.02,20.31,7.11,0.76,12.18,29.06,16.49,1.52,7.68,0.07 +2019-09-30 09:00:00,20.18,72.12,23.86,21.33,7.34,0.85,14.03,31.92,20.69,1.76,8.92,0.17 +2019-09-30 10:00:00,25.3,85.84,25.49,21.04,7.32,0.92,16.67,32.75,19.75,2.02,10.38,0.12 +2019-09-30 11:00:00,31.46,95.25,25.08,22.45,7.63,0.88,19.84,24.89,12.32,2.0,10.59,0.35 +2019-09-30 12:00:00,31.79,86.85,26.78,23.86,8.77,0.96,27.41,26.52,10.92,2.4,13.62,0.18 +2019-09-30 13:00:00,36.07,98.14,25.64,23.59,8.15,0.84,39.55,21.69,7.69,2.44,18.51,0.42 +2019-09-30 14:00:00,38.56,103.66,26.53,23.43,8.52,0.84,51.03,20.54,6.19,2.9,17.32,0.11 +2019-09-30 15:00:00,42.24,107.23,29.56,21.53,8.12,0.88,58.1,21.96,6.4,3.59,19.36,0.09 +2019-09-30 16:00:00,44.86,113.46,26.16,21.79,7.77,0.88,64.86,19.46,5.28,3.26,26.05,0.22 +2019-09-30 17:00:00,43.27,114.26,27.13,20.25,8.36,0.9,64.24,20.12,5.62,3.42,28.58,0.14 +2019-09-30 18:00:00,37.85,108.07,31.66,20.26,9.92,0.95,47.85,23.57,7.12,3.3,25.97,0.24 +2019-09-30 19:00:00,35.53,111.42,40.13,22.52,10.72,1.14,31.11,31.87,10.9,3.59,28.48,0.32 +2019-09-30 20:00:00,41.06,128.4,42.23,22.99,10.5,1.33,25.95,38.94,17.89,4.47,31.24,0.25 +2019-09-30 21:00:00,47.03,139.0,42.11,23.76,10.71,1.43,23.01,42.37,21.98,3.56,28.15,0.37 +2019-09-30 22:00:00,46.61,137.48,40.2,23.41,9.97,1.46,19.23,44.85,25.92,3.3,27.23,0.73 +2019-09-30 23:00:00,43.79,125.63,36.8,23.41,9.71,1.36,15.63,40.95,23.78,3.11,24.71,0.95 +2019-10-01 00:00:00,39.04,106.19,33.52,23.93,9.03,1.22,15.0,38.69,21.76,2.85,21.42,1.26 +2019-10-01 01:00:00,37.69,94.96,29.38,24.35,8.34,1.01,13.55,31.67,16.91,2.56,18.56,0.96 +2019-10-01 02:00:00,32.16,74.67,27.1,24.23,8.33,0.93,14.19,26.87,13.19,3.11,15.47,0.51 +2019-10-01 03:00:00,28.95,65.39,25.65,25.89,8.3,0.84,15.33,26.55,12.92,2.43,13.05,0.39 +2019-10-01 04:00:00,27.13,59.17,24.04,24.1,8.12,0.81,14.19,23.66,11.52,1.91,12.92,0.21 +2019-10-01 05:00:00,26.52,55.45,22.83,24.93,7.69,0.78,12.94,23.02,11.18,1.88,12.54,0.27 +2019-10-01 06:00:00,24.72,54.14,23.64,23.4,7.69,0.81,13.25,26.12,14.49,2.0,12.68,0.4 +2019-10-01 07:00:00,27.04,60.85,24.97,23.09,7.85,0.93,13.51,30.5,19.43,2.07,11.7,0.36 +2019-10-01 08:00:00,31.99,81.34,25.89,24.05,8.17,1.04,13.03,32.54,20.11,2.37,11.32,0.34 +2019-10-01 09:00:00,38.55,108.59,26.69,25.01,8.81,1.02,15.89,28.2,15.68,2.42,12.1,0.42 +2019-10-01 10:00:00,36.87,93.54,26.3,25.23,8.86,1.0,21.77,25.79,12.94,2.3,10.58,0.44 +2019-10-01 11:00:00,34.32,100.99,23.97,27.21,10.46,0.93,29.47,23.47,11.41,2.08,10.38,0.38 +2019-10-01 12:00:00,34.8,99.6,22.54,26.9,11.61,0.88,41.5,19.15,7.54,1.89,15.91,0.27 +2019-10-01 13:00:00,38.77,106.69,22.88,25.17,8.18,0.85,56.73,18.47,6.13,2.24,19.5,0.23 +2019-10-01 14:00:00,39.88,108.38,22.93,24.38,8.13,0.77,65.86,18.05,5.87,2.95,20.22,0.09 +2019-10-01 15:00:00,39.5,119.96,25.4,22.96,8.6,0.82,58.65,20.56,7.09,2.78,20.68,0.18 +2019-10-01 16:00:00,38.17,120.63,25.77,22.57,8.46,0.81,54.25,18.87,5.92,2.39,22.52,1.3 +2019-10-01 17:00:00,34.54,101.99,27.17,22.99,8.14,0.86,45.67,21.12,6.92,2.55,31.33,0.95 +2019-10-01 18:00:00,34.4,101.96,29.78,22.42,8.28,0.92,34.73,22.82,7.37,3.05,35.81,1.11 +2019-10-01 19:00:00,28.91,96.46,33.07,22.1,8.42,1.02,21.79,25.81,8.4,3.13,24.11,0.24 +2019-10-01 20:00:00,32.23,97.34,34.87,22.43,8.14,1.06,16.29,29.41,11.77,3.21,19.39,0.36 +2019-10-01 21:00:00,35.39,105.35,37.64,22.53,7.82,1.21,13.41,36.73,18.61,3.51,21.86,0.6 +2019-10-01 22:00:00,36.7,106.68,39.39,22.94,8.08,1.26,13.03,38.94,19.43,2.97,23.6,1.3 +2019-10-01 23:00:00,35.75,97.63,36.52,23.04,8.44,1.28,13.55,38.36,21.18,2.89,22.92,1.61 +2019-10-02 00:00:00,34.45,91.77,34.19,23.49,7.97,1.24,13.8,40.14,25.28,3.87,22.4,1.63 +2019-10-02 01:00:00,35.33,91.43,33.43,23.12,7.31,1.17,13.32,42.36,28.43,3.75,20.62,1.8 +2019-10-02 02:00:00,38.12,94.59,33.12,25.01,7.64,1.08,15.1,39.97,25.4,3.42,18.61,1.45 +2019-10-02 03:00:00,37.7,87.0,32.79,26.28,8.46,0.95,14.05,38.74,24.23,3.27,21.62,1.04 +2019-10-02 04:00:00,36.77,78.96,30.28,24.01,7.69,0.91,13.24,34.79,20.82,2.59,17.69,0.93 +2019-10-02 05:00:00,34.65,73.62,30.39,24.24,7.8,0.87,13.13,37.18,23.51,2.46,15.19,1.17 +2019-10-02 06:00:00,34.47,74.04,28.5,23.83,8.06,0.91,13.55,36.33,24.07,2.5,14.61,1.36 +2019-10-02 07:00:00,35.71,74.88,27.57,22.23,8.18,1.0,13.42,37.47,26.2,2.55,15.11,0.95 +2019-10-02 08:00:00,35.79,77.73,28.8,24.13,7.94,0.99,14.64,31.59,18.04,2.5,15.41,0.72 +2019-10-02 09:00:00,36.58,93.89,26.45,24.89,8.41,0.93,20.25,25.45,12.3,2.19,13.23,1.28 +2019-10-02 10:00:00,35.66,79.77,23.37,24.96,10.85,0.92,29.55,20.82,8.88,1.93,10.73,0.68 +2019-10-02 11:00:00,38.17,84.25,23.54,25.23,11.35,0.88,44.08,21.36,8.55,2.29,10.0,0.47 +2019-10-02 12:00:00,39.45,89.93,21.93,25.16,10.82,0.88,52.88,19.95,8.85,2.19,8.85,0.41 +2019-10-02 13:00:00,36.98,88.01,21.15,25.86,10.29,0.86,65.35,17.56,6.61,2.35,8.88,0.36 +2019-10-02 14:00:00,39.77,89.38,21.08,25.33,9.84,0.84,76.28,16.61,5.42,2.26,8.37,0.35 +2019-10-02 15:00:00,42.22,91.84,22.88,23.69,9.49,0.84,82.78,18.1,5.98,1.91,8.15,0.36 +2019-10-02 16:00:00,42.7,91.15,21.33,24.4,8.65,0.79,85.0,16.75,5.24,1.87,8.98,0.16 +2019-10-02 17:00:00,39.39,85.99,20.15,24.4,7.96,0.8,74.19,16.74,5.84,1.9,9.98,0.06 +2019-10-02 18:00:00,33.46,86.78,26.24,23.48,8.38,0.91,54.46,20.28,6.06,2.08,10.77,0.37 +2019-10-02 19:00:00,37.07,101.76,36.95,25.53,7.89,1.07,33.15,28.67,9.42,2.58,14.7,0.37 +2019-10-02 20:00:00,42.67,126.83,41.02,25.46,8.58,1.3,28.68,40.8,18.8,3.56,21.33,0.43 +2019-10-02 21:00:00,56.14,148.28,44.15,25.32,10.1,1.57,23.74,52.93,31.28,3.49,25.48,0.36 +2019-10-02 22:00:00,59.13,153.68,40.94,26.81,10.32,1.66,22.14,51.81,33.44,4.96,27.89,0.2 +2019-10-02 23:00:00,61.34,151.62,43.07,24.33,10.84,1.73,21.86,67.34,48.58,5.34,28.16,0.54 +2019-10-03 00:00:00,59.22,144.95,41.41,25.19,11.3,1.73,20.2,74.47,55.61,5.91,26.72,0.74 +2019-10-03 01:00:00,61.93,148.99,41.79,24.87,12.81,1.64,19.42,74.78,58.6,5.85,27.72,0.88 +2019-10-03 02:00:00,61.72,133.86,38.94,26.15,12.13,1.61,18.17,78.05,63.15,5.57,28.26,0.89 +2019-10-03 03:00:00,60.2,129.41,35.36,28.07,10.45,1.51,21.68,70.98,58.09,4.48,27.82,0.72 +2019-10-03 04:00:00,60.4,124.95,36.86,24.96,10.88,1.41,19.54,72.23,61.19,3.97,24.31,0.77 +2019-10-03 05:00:00,60.06,122.19,35.24,23.68,10.13,1.32,18.54,72.48,59.93,4.73,24.71,0.77 +2019-10-03 06:00:00,60.29,119.24,34.09,22.94,9.55,1.33,23.61,71.92,60.54,4.69,25.13,0.77 +2019-10-03 07:00:00,61.55,122.87,34.85,25.25,9.51,1.48,22.19,76.25,64.39,4.12,22.69,0.57 +2019-10-03 08:00:00,69.2,160.38,39.53,24.9,11.07,1.62,23.89,72.12,57.26,4.64,26.46,0.7 +2019-10-03 09:00:00,80.29,174.62,45.81,28.11,14.7,1.47,33.89,55.06,33.5,4.16,23.02,0.6 +2019-10-03 10:00:00,75.23,172.07,40.28,29.14,15.59,1.21,35.31,37.64,17.03,4.6,19.58,0.36 +2019-10-03 11:00:00,61.77,159.61,35.45,31.53,12.91,1.08,49.01,32.79,13.98,3.56,15.88,0.3 +2019-10-03 12:00:00,53.39,152.94,31.83,30.49,10.1,0.97,60.74,28.01,11.38,3.28,14.62,0.25 +2019-10-03 13:00:00,45.82,125.33,29.2,30.23,8.93,0.94,77.04,23.11,8.21,3.23,24.81,1.41 +2019-10-03 14:00:00,48.88,126.84,27.38,31.92,9.72,0.94,88.76,20.28,6.62,2.32,16.0,1.64 +2019-10-03 15:00:00,51.27,138.57,27.75,29.43,8.77,0.95,99.2,19.48,5.8,3.19,21.98,1.6 +2019-10-03 16:00:00,53.42,148.04,26.67,29.33,8.79,0.88,97.35,17.69,4.09,3.03,22.18,2.14 +2019-10-03 17:00:00,56.05,141.5,28.48,26.95,8.57,0.95,92.53,18.71,4.47,2.61,23.27,2.06 +2019-10-03 18:00:00,56.3,158.6,37.85,27.19,8.68,1.1,62.52,27.51,8.88,3.03,40.15,2.86 +2019-10-03 19:00:00,64.31,177.61,50.21,27.85,9.46,1.34,38.06,37.49,10.79,4.0,34.04,2.18 +2019-10-03 20:00:00,65.26,204.06,49.96,28.2,9.98,1.41,36.13,39.72,15.23,5.24,50.2,1.72 +2019-10-03 21:00:00,67.89,197.18,29.91,27.57,8.58,0.92,47.39,26.31,10.23,3.27,40.57,0.79 +2019-10-03 22:00:00,36.06,133.16,36.06,24.1,8.04,0.96,36.92,29.8,11.32,2.97,20.13,0.49 +2019-10-03 23:00:00,21.16,38.38,47.68,23.99,9.39,1.22,20.91,45.93,22.93,4.18,22.72,0.76 +2019-10-04 00:00:00,26.87,48.47,47.82,24.77,7.92,1.06,19.09,41.77,18.36,3.56,25.67,1.36 +2019-10-04 01:00:00,25.67,50.21,38.18,24.7,7.43,0.91,19.42,32.21,13.43,3.01,17.42,1.46 +2019-10-04 02:00:00,28.95,47.78,36.67,26.09,7.35,0.85,19.84,32.9,12.63,3.35,17.13,1.07 +2019-10-04 03:00:00,31.53,56.08,32.85,26.88,7.75,0.84,21.69,32.99,16.03,3.07,16.07,0.72 +2019-10-04 04:00:00,35.02,63.43,35.33,24.31,7.86,0.86,15.83,38.5,19.31,2.72,21.79,0.9 +2019-10-04 05:00:00,37.01,67.84,35.25,23.68,7.45,0.91,15.44,40.44,22.26,2.83,23.9,1.07 +2019-10-04 06:00:00,37.86,73.2,34.62,23.13,7.75,0.94,13.8,45.48,28.98,2.87,19.86,1.4 +2019-10-04 07:00:00,40.61,80.54,34.7,25.04,7.82,1.01,14.34,53.54,37.83,2.54,19.66,1.21 +2019-10-04 08:00:00,46.41,91.45,35.62,25.73,7.96,1.09,14.75,51.67,36.48,3.33,17.87,1.43 +2019-10-04 09:00:00,52.18,98.27,33.99,27.18,7.74,1.09,20.18,42.66,25.75,2.28,17.6,4.78 +2019-10-04 10:00:00,52.58,99.6,29.33,25.26,8.18,1.01,29.48,30.72,15.0,2.1,14.28,2.54 +2019-10-04 11:00:00,51.48,101.45,24.94,25.91,8.38,0.99,41.29,23.61,10.37,2.95,22.85,1.74 +2019-10-04 12:00:00,49.49,103.31,23.49,28.36,8.27,1.0,53.44,20.14,7.76,2.91,30.39,1.3 +2019-10-04 13:00:00,48.8,106.16,23.49,28.29,8.38,0.81,62.83,19.85,9.13,3.08,35.8,2.05 +2019-10-04 14:00:00,49.51,108.83,23.01,28.19,8.72,0.74,63.23,20.02,8.51,2.61,31.05,1.98 +2019-10-04 15:00:00,46.66,107.38,23.21,27.43,9.23,0.7,62.0,18.72,6.7,2.36,31.07,1.49 +2019-10-04 16:00:00,43.13,109.61,24.78,29.59,9.15,0.87,64.43,19.69,7.4,2.39,34.26,1.76 +2019-10-04 17:00:00,45.93,115.65,26.07,27.65,9.41,0.85,59.83,20.89,7.47,2.57,37.78,1.69 +2019-10-04 18:00:00,46.91,118.57,30.5,27.24,9.12,0.93,50.67,23.85,8.26,2.39,34.36,0.38 +2019-10-04 19:00:00,44.66,115.82,38.35,26.13,8.85,1.05,37.64,32.6,11.57,2.57,31.58,0.31 +2019-10-04 20:00:00,45.09,110.84,41.9,26.48,8.74,1.04,30.34,36.06,13.02,3.03,27.73,0.73 +2019-10-04 21:00:00,47.18,114.65,46.22,24.92,8.72,1.2,20.39,44.23,19.25,3.76,26.04,1.23 +2019-10-04 22:00:00,48.33,133.19,49.86,26.51,8.76,1.47,15.42,61.01,36.51,4.24,30.86,1.77 +2019-10-04 23:00:00,51.87,155.23,47.43,25.65,9.24,1.45,15.58,60.11,36.8,5.17,36.71,2.04 +2019-10-05 00:00:00,52.72,154.44,42.74,24.38,8.86,1.2,17.37,49.38,27.09,4.93,29.54,2.82 +2019-10-05 01:00:00,53.4,143.48,39.51,25.27,8.0,0.99,16.0,40.88,19.59,3.16,22.06,3.4 +2019-10-05 02:00:00,50.35,109.93,34.38,26.51,8.09,0.9,16.45,32.57,13.46,2.78,18.31,1.85 +2019-10-05 03:00:00,45.28,99.28,28.37,25.57,8.21,0.82,16.97,27.48,11.9,2.14,15.17,1.26 +2019-10-05 04:00:00,43.26,86.25,25.75,23.07,8.07,0.82,18.09,24.56,10.15,1.74,12.4,1.3 +2019-10-05 05:00:00,38.19,74.4,25.0,22.66,7.73,0.83,19.55,23.4,9.64,1.65,11.23,0.69 +2019-10-05 06:00:00,38.61,73.04,27.12,22.91,7.85,0.84,17.1,28.62,14.14,1.51,8.73,0.7 +2019-10-05 07:00:00,37.23,75.69,29.64,22.12,8.23,0.89,15.01,37.08,22.06,1.35,8.65,0.83 +2019-10-05 08:00:00,37.62,83.38,28.84,22.76,7.53,0.91,18.42,33.92,19.36,1.72,9.42,1.11 +2019-10-05 09:00:00,36.5,84.75,27.0,22.9,7.9,0.9,27.6,31.09,17.57,1.62,9.74,1.46 +2019-10-05 10:00:00,30.77,82.41,24.65,21.95,8.36,0.88,38.96,24.59,11.53,1.42,12.93,0.52 +2019-10-05 11:00:00,28.35,82.68,23.94,22.28,8.06,0.93,48.04,23.24,10.32,1.63,14.88,0.14 +2019-10-05 12:00:00,29.22,81.93,23.41,22.75,7.76,0.74,54.76,22.11,10.53,1.4,13.14,0.57 +2019-10-05 13:00:00,27.89,81.42,23.67,22.81,7.13,0.76,58.48,21.58,8.31,1.49,18.07,1.62 +2019-10-05 14:00:00,23.56,75.72,22.34,23.3,7.41,0.71,61.93,19.29,7.01,1.45,13.72,1.46 +2019-10-05 15:00:00,24.3,72.5,22.52,23.12,7.35,0.77,64.09,19.4,7.14,1.34,14.25,1.19 +2019-10-05 16:00:00,24.0,75.7,22.4,22.66,7.32,0.76,64.46,19.75,8.12,1.47,13.76,3.21 +2019-10-05 17:00:00,26.01,85.61,26.13,22.65,6.91,0.84,60.19,21.01,7.43,1.73,23.11,4.01 +2019-10-05 18:00:00,27.6,98.21,35.88,22.69,7.5,0.93,45.46,29.38,11.02,2.17,25.35,2.38 +2019-10-05 19:00:00,32.64,122.02,47.81,23.54,7.78,1.11,28.44,39.21,14.14,3.04,31.76,1.86 +2019-10-05 20:00:00,43.93,153.42,53.89,23.8,8.47,1.34,21.99,54.32,27.55,3.96,37.89,1.9 +2019-10-05 21:00:00,57.98,190.97,58.23,24.55,9.21,1.83,18.58,80.99,57.71,5.16,40.31,3.04 +2019-10-05 22:00:00,68.03,227.09,59.53,25.51,9.84,2.01,17.74,82.32,73.56,5.35,43.95,4.56 +2019-10-05 23:00:00,70.08,183.03,59.05,25.65,10.24,1.89,18.16,83.08,73.16,5.87,45.49,6.42 +2019-10-06 00:00:00,70.16,192.98,53.97,25.56,9.21,1.48,19.25,73.22,51.83,5.38,37.33,3.7 +2019-10-06 01:00:00,64.18,150.63,45.77,25.72,7.48,1.18,21.25,54.37,32.71,4.34,29.25,3.17 +2019-10-06 02:00:00,60.34,127.23,40.68,27.33,7.28,1.1,24.94,46.45,25.41,3.64,22.51,2.1 +2019-10-06 03:00:00,56.52,112.5,36.88,26.61,7.53,0.94,21.96,37.07,16.32,3.08,20.66,1.97 +2019-10-06 04:00:00,54.88,103.45,34.86,25.73,7.2,0.91,20.48,33.97,14.36,3.03,17.55,1.32 +2019-10-06 05:00:00,54.53,101.46,37.44,25.52,7.45,0.91,16.4,39.57,19.54,2.33,15.78,1.17 +2019-10-06 06:00:00,59.22,110.48,37.77,25.4,7.76,0.95,15.9,44.63,25.34,2.45,17.15,1.95 +2019-10-06 07:00:00,60.77,117.17,37.47,25.17,7.83,1.0,17.64,47.15,28.4,2.31,15.36,1.48 +2019-10-06 08:00:00,68.17,132.98,38.7,26.26,8.21,1.07,21.61,44.05,24.36,2.49,14.6,1.31 +2019-10-06 09:00:00,74.49,145.31,35.14,27.64,8.58,1.03,37.86,33.61,14.76,2.54,12.35,1.19 +2019-10-06 10:00:00,80.13,152.39,27.7,27.61,9.6,0.97,61.3,24.14,9.35,3.11,14.45,0.32 +2019-10-06 11:00:00,74.06,150.32,24.16,27.24,10.43,0.89,70.47,20.05,7.08,2.57,22.96,0.13 +2019-10-06 12:00:00,62.31,141.24,23.29,27.16,9.93,0.78,72.35,19.7,7.01,2.24,25.84,0.27 +2019-10-06 13:00:00,49.12,125.64,22.13,26.91,9.55,0.82,75.19,18.61,6.56,1.99,21.68,1.33 +2019-10-06 14:00:00,44.07,118.11,21.7,28.13,9.18,0.83,76.4,18.07,6.35,1.55,14.01,1.2 +2019-10-06 15:00:00,42.27,125.47,21.88,26.9,9.14,0.82,77.44,19.3,7.56,1.49,14.84,1.05 +2019-10-06 16:00:00,45.05,129.52,22.72,25.96,8.69,0.79,74.22,19.62,7.72,1.57,18.51,1.1 +2019-10-06 17:00:00,43.11,132.3,24.91,25.59,8.31,0.73,64.92,20.42,7.58,1.49,25.56,1.48 +2019-10-06 18:00:00,43.34,135.6,36.65,26.18,8.24,0.78,45.63,28.41,8.9,2.15,24.52,2.38 +2019-10-06 19:00:00,46.27,151.18,51.52,27.38,8.7,1.0,30.63,43.98,16.23,2.79,26.15,1.11 +2019-10-06 20:00:00,54.87,174.71,60.02,28.55,9.06,1.2,22.91,56.27,23.88,3.97,30.71,1.93 +2019-10-06 21:00:00,64.44,183.83,54.19,29.29,9.19,1.29,23.7,56.71,27.86,4.07,41.28,2.8 +2019-10-06 22:00:00,69.06,180.55,52.45,28.8,9.32,1.29,25.03,58.31,32.4,3.89,39.09,2.98 +2019-10-06 23:00:00,68.58,168.47,45.53,28.8,9.1,1.11,26.88,42.88,17.37,3.22,29.46,2.46 +2019-10-07 00:00:00,69.88,148.74,42.39,28.42,8.65,1.02,27.53,38.71,15.23,2.66,25.17,1.73 +2019-10-07 01:00:00,67.93,139.4,40.42,28.4,8.29,0.95,27.52,36.89,15.39,2.28,22.68,1.64 +2019-10-07 02:00:00,67.67,133.48,36.25,30.63,8.16,0.93,30.99,33.2,12.05,2.24,18.31,1.21 +2019-10-07 03:00:00,63.79,123.37,29.28,27.73,8.13,0.82,28.45,26.38,8.98,1.95,16.1,1.16 +2019-10-07 04:00:00,60.84,113.13,29.15,28.41,7.75,0.82,24.67,25.95,8.92,1.85,13.21,0.89 +2019-10-07 05:00:00,60.2,112.63,30.16,28.21,7.45,0.83,21.28,27.17,9.91,1.81,11.8,1.0 +2019-10-07 06:00:00,64.68,122.76,31.45,28.01,7.33,0.89,15.41,32.86,15.71,1.84,11.55,1.04 +2019-10-07 07:00:00,68.26,136.85,31.19,28.18,8.12,0.95,13.94,35.74,19.62,1.95,10.91,1.1 +2019-10-07 08:00:00,70.13,150.46,31.04,28.9,8.36,1.03,14.79,37.29,21.53,2.05,11.12,0.75 +2019-10-07 09:00:00,76.8,166.09,31.22,29.92,8.76,1.11,27.02,33.24,17.05,2.29,11.78,1.81 +2019-10-07 10:00:00,82.94,174.22,30.27,29.04,9.27,1.02,41.66,29.11,12.89,2.46,13.08,0.84 +2019-10-07 11:00:00,67.08,152.43,27.58,27.02,8.92,0.89,51.7,25.54,10.47,2.26,20.87,0.24 +2019-10-07 12:00:00,46.82,131.7,26.19,27.43,8.8,0.81,58.42,23.26,8.95,2.21,19.55,0.85 +2019-10-07 13:00:00,39.63,125.42,24.06,25.36,8.72,0.81,58.21,20.55,6.82,2.36,20.02,0.89 +2019-10-07 14:00:00,40.39,126.6,22.81,24.75,8.45,0.76,61.25,19.33,6.32,2.57,19.72,1.32 +2019-10-07 15:00:00,38.91,117.62,24.31,25.2,7.96,0.85,62.07,22.4,8.74,2.26,16.56,0.96 +2019-10-07 16:00:00,36.49,113.68,25.12,24.86,7.71,0.7,61.07,23.18,9.36,1.8,17.29,1.04 +2019-10-07 17:00:00,37.53,117.39,28.69,25.62,7.82,0.77,57.03,28.65,15.31,2.05,30.56,1.81 +2019-10-07 18:00:00,40.96,133.2,35.65,24.62,7.51,0.9,45.6,30.43,10.92,2.34,24.8,2.67 +2019-10-07 19:00:00,42.42,149.8,49.92,25.46,8.16,1.08,29.86,45.17,18.0,2.81,22.35,1.39 +2019-10-07 20:00:00,49.73,172.26,50.23,25.72,8.36,1.11,27.3,44.09,16.52,3.48,27.46,1.63 +2019-10-07 21:00:00,51.53,164.57,44.9,26.21,8.69,1.01,29.55,42.03,17.91,3.4,26.3,1.52 +2019-10-07 22:00:00,50.71,151.15,41.91,25.03,8.33,0.96,28.4,39.16,16.42,3.0,19.95,1.56 +2019-10-07 23:00:00,45.82,130.55,38.88,24.39,8.21,0.88,25.91,37.99,17.7,2.5,16.53,1.62 +2019-10-08 00:00:00,40.02,118.97,37.77,23.68,8.28,0.81,24.44,36.41,15.61,2.28,13.92,1.21 +2019-10-08 01:00:00,40.37,116.85,35.3,23.66,7.51,0.7,24.48,36.37,16.88,2.06,12.38,1.02 +2019-10-08 02:00:00,39.34,108.81,34.08,25.46,7.48,0.71,23.2,34.02,14.78,2.09,11.88,0.76 +2019-10-08 03:00:00,38.21,95.86,29.3,23.43,7.91,0.63,24.13,29.08,11.85,2.19,11.99,0.69 +2019-10-08 04:00:00,38.62,88.69,29.36,23.35,7.8,0.64,24.49,29.41,12.14,1.95,11.98,0.65 +2019-10-08 05:00:00,38.09,86.41,28.21,23.2,7.61,0.64,23.59,27.7,11.32,1.66,12.15,0.95 +2019-10-08 06:00:00,39.13,85.55,30.77,23.62,7.43,0.67,21.58,32.68,15.94,1.84,10.67,1.4 +2019-10-08 07:00:00,41.98,93.13,36.79,23.62,8.29,0.74,17.74,42.97,24.08,1.86,10.61,1.51 +2019-10-08 08:00:00,47.41,108.84,36.64,24.12,9.56,0.83,20.74,43.5,25.28,2.03,11.61,1.18 +2019-10-08 09:00:00,53.27,123.73,33.48,24.28,10.3,0.84,32.37,34.34,17.16,2.19,10.99,1.38 +2019-10-08 10:00:00,56.29,131.19,27.44,23.34,9.97,0.83,48.97,24.1,9.35,2.19,10.18,0.32 +2019-10-08 11:00:00,51.96,126.35,22.98,23.23,10.14,0.78,63.63,21.01,8.5,2.08,12.29,0.18 +2019-10-08 12:00:00,43.59,113.65,20.8,22.76,9.48,0.68,68.07,18.79,6.8,2.08,15.47,0.46 +2019-10-08 13:00:00,37.75,104.07,19.68,22.24,9.06,0.61,69.41,17.96,6.84,1.91,16.51,1.05 +2019-10-08 14:00:00,34.74,94.59,18.75,22.14,8.56,0.58,70.71,16.71,6.06,1.71,13.78,1.01 +2019-10-08 15:00:00,33.03,90.38,19.4,21.43,9.09,0.56,68.89,18.07,7.36,1.63,14.59,0.9 +2019-10-08 16:00:00,30.88,86.62,22.76,20.98,8.87,0.57,67.55,21.91,8.53,1.44,9.45,0.92 +2019-10-08 17:00:00,27.22,85.42,24.26,21.44,8.58,0.62,64.43,21.45,7.77,1.45,9.68,1.28 +2019-10-08 18:00:00,32.57,96.94,31.7,20.97,8.86,0.7,51.7,28.76,10.29,1.46,10.59,1.33 +2019-10-08 19:00:00,31.56,103.23,45.81,21.72,9.14,0.89,34.04,38.88,12.31,2.53,14.32,0.3 +2019-10-08 20:00:00,43.37,131.99,51.1,23.14,9.42,1.15,26.33,48.31,20.41,2.93,19.34,1.02 +2019-10-08 21:00:00,64.0,169.65,52.42,23.85,9.49,1.48,21.93,57.58,31.11,3.95,29.5,1.63 +2019-10-08 22:00:00,79.54,207.58,55.82,24.22,10.15,1.81,18.93,76.75,53.76,4.49,33.55,2.26 +2019-10-08 23:00:00,93.38,229.04,56.96,25.06,10.8,1.97,20.19,76.39,67.79,4.86,33.1,3.85 +2019-10-09 00:00:00,98.97,224.42,55.21,23.99,11.17,2.0,23.42,87.89,71.05,5.21,30.96,3.22 +2019-10-09 01:00:00,98.21,226.05,54.48,23.65,10.11,1.77,31.42,85.85,69.52,5.36,34.3,2.95 +2019-10-09 02:00:00,95.36,199.73,50.92,25.42,10.09,1.65,28.18,86.38,83.73,5.25,32.05,2.62 +2019-10-09 03:00:00,91.66,186.77,46.01,25.35,10.51,1.62,23.51,84.75,86.13,5.29,31.2,5.32 +2019-10-09 04:00:00,89.31,182.92,45.73,24.02,12.29,1.61,23.18,82.16,71.37,5.54,29.36,4.8 +2019-10-09 05:00:00,85.71,166.54,43.25,23.36,10.29,1.62,29.16,84.17,85.23,4.81,28.24,3.23 +2019-10-09 06:00:00,84.5,161.03,40.2,24.65,10.39,1.64,35.91,95.38,86.58,5.14,28.22,4.58 +2019-10-09 07:00:00,86.76,173.26,39.05,23.45,11.27,1.82,44.63,101.79,91.47,5.42,30.88,6.01 +2019-10-09 08:00:00,92.95,210.5,51.35,26.36,14.93,1.78,43.3,93.4,75.23,5.07,32.37,3.25 +2019-10-09 09:00:00,105.22,239.58,53.48,27.71,19.47,1.48,44.26,55.7,29.64,4.84,28.58,5.89 +2019-10-09 10:00:00,96.95,218.73,44.39,26.75,18.58,1.2,54.39,37.82,14.57,3.54,20.32,0.64 +2019-10-09 11:00:00,84.63,194.51,39.71,26.79,15.76,1.05,66.49,31.9,10.72,2.75,14.79,0.25 +2019-10-09 12:00:00,72.67,164.58,28.59,25.0,14.6,0.82,79.07,25.01,12.81,2.27,12.16,0.14 +2019-10-09 13:00:00,53.33,137.38,24.77,24.88,11.09,0.76,87.28,19.78,6.73,2.25,13.57,0.08 +2019-10-09 14:00:00,44.62,119.09,24.58,23.96,9.66,0.74,91.24,20.01,6.94,2.17,14.48,0.63 +2019-10-09 15:00:00,38.55,111.34,25.04,23.75,9.33,0.73,104.28,20.34,6.78,2.01,15.55,0.58 +2019-10-09 16:00:00,38.12,110.25,28.08,23.6,9.63,0.81,103.02,23.21,8.45,1.74,18.2,0.59 +2019-10-09 17:00:00,40.93,116.11,31.23,25.98,9.97,0.86,93.39,23.1,6.3,1.88,30.16,0.8 +2019-10-09 18:00:00,49.8,139.99,47.58,25.14,11.14,1.05,68.25,35.93,9.66,2.13,38.8,2.93 +2019-10-09 19:00:00,63.29,185.8,59.57,26.29,11.23,1.22,47.52,42.0,9.39,3.83,31.27,4.33 +2019-10-09 20:00:00,76.56,218.31,63.23,27.62,11.17,1.44,31.7,48.09,13.45,4.82,41.4,0.92 +2019-10-09 21:00:00,83.89,221.54,66.69,29.2,10.59,1.66,27.46,61.51,27.34,5.79,66.68,1.57 +2019-10-09 22:00:00,88.77,247.41,65.3,29.14,10.71,1.76,25.73,71.57,39.39,5.57,61.6,2.56 +2019-10-09 23:00:00,87.65,233.43,63.53,28.03,11.72,1.85,26.03,83.41,57.0,5.83,51.42,2.73 +2019-10-10 00:00:00,89.51,218.35,57.01,26.17,11.65,1.67,23.14,76.78,50.14,5.65,45.97,3.1 +2019-10-10 01:00:00,88.52,200.47,56.65,26.05,10.78,1.53,19.35,76.54,53.25,5.23,47.13,2.77 +2019-10-10 02:00:00,92.08,195.69,54.56,27.65,11.0,1.48,25.31,71.28,61.99,5.18,38.76,2.61 +2019-10-10 03:00:00,95.64,190.1,52.18,27.75,10.53,1.38,22.27,69.2,62.11,5.02,30.35,2.53 +2019-10-10 04:00:00,98.46,188.91,50.86,27.06,10.18,1.39,19.66,72.54,66.82,4.88,31.41,3.73 +2019-10-10 05:00:00,104.07,193.19,49.02,26.91,10.36,1.39,21.89,69.24,64.81,4.85,31.39,3.0 +2019-10-10 06:00:00,107.87,200.57,48.65,28.64,11.32,1.42,19.55,73.55,70.01,5.1,31.15,2.47 +2019-10-10 07:00:00,117.4,216.1,48.74,28.51,15.79,1.63,26.65,88.74,88.58,5.87,32.3,2.29 +2019-10-10 08:00:00,135.08,244.92,58.06,30.56,16.32,1.85,31.12,98.36,92.91,6.18,36.1,2.62 +2019-10-10 09:00:00,146.67,285.12,69.49,32.89,22.54,1.74,66.99,76.6,42.91,6.28,45.38,6.94 +2019-10-10 10:00:00,150.34,298.93,60.46,33.02,25.11,1.45,77.44,47.89,16.03,5.36,38.14,0.91 +2019-10-10 11:00:00,129.24,258.13,48.83,32.13,22.25,1.26,88.59,38.12,12.65,4.0,32.3,0.21 +2019-10-10 12:00:00,107.47,223.3,39.51,32.14,18.17,1.07,93.42,30.32,9.07,3.08,24.61,0.08 +2019-10-10 13:00:00,89.97,198.29,34.53,29.83,14.77,0.94,98.08,26.39,7.68,2.71,21.44,0.24 +2019-10-10 14:00:00,69.75,167.99,30.12,30.43,12.58,0.84,101.13,25.98,9.91,2.33,22.08,0.9 +2019-10-10 15:00:00,63.39,150.99,28.99,28.49,12.07,0.8,107.6,21.76,6.08,2.35,22.11,0.68 +2019-10-10 16:00:00,63.21,148.09,31.04,27.54,11.83,0.81,108.05,23.59,6.06,2.29,25.34,1.18 +2019-10-10 17:00:00,70.72,163.93,38.39,28.62,12.63,0.93,98.52,27.42,6.44,2.47,35.37,1.52 +2019-10-10 18:00:00,83.62,196.44,46.18,29.65,12.19,1.1,74.06,33.0,7.39,3.29,47.54,3.97 +2019-10-10 19:00:00,93.23,228.03,56.63,30.12,11.69,1.32,47.24,39.32,7.6,4.05,39.13,1.03 +2019-10-10 20:00:00,99.02,243.99,62.68,32.39,11.74,1.42,32.13,47.51,13.78,4.98,47.31,0.75 +2019-10-10 21:00:00,105.77,255.53,62.42,32.51,12.28,1.57,28.86,53.61,20.56,5.33,48.01,1.83 +2019-10-10 22:00:00,107.26,257.36,62.28,32.36,12.33,1.65,26.28,59.13,25.83,5.75,60.89,2.06 +2019-10-10 23:00:00,111.29,239.83,60.47,31.57,11.84,1.6,26.99,61.48,31.38,5.59,45.6,2.06 +2019-10-11 00:00:00,110.68,246.42,60.3,30.73,11.54,1.68,26.18,74.8,48.69,5.12,36.62,2.45 +2019-10-11 01:00:00,110.7,245.24,58.36,30.58,10.36,1.6,22.43,63.55,52.62,5.53,38.55,3.14 +2019-10-11 02:00:00,110.07,226.96,54.3,32.5,10.72,1.55,23.09,63.81,54.11,5.15,40.66,4.72 +2019-10-11 03:00:00,113.9,218.42,52.8,33.11,10.82,1.48,19.2,77.61,58.23,5.18,38.86,3.08 +2019-10-11 04:00:00,115.2,208.95,51.92,31.74,9.64,1.45,18.13,64.66,57.7,5.22,41.41,3.02 +2019-10-11 05:00:00,120.34,209.03,48.6,31.93,9.58,1.45,18.3,68.22,63.19,5.68,39.2,3.92 +2019-10-11 06:00:00,124.28,218.11,46.43,32.91,9.23,1.48,18.58,68.63,65.98,5.39,36.09,3.7 +2019-10-11 07:00:00,124.06,220.44,46.98,32.4,9.02,1.55,17.67,66.37,62.42,5.44,31.34,4.41 +2019-10-11 08:00:00,126.46,233.51,51.46,33.93,9.91,1.66,18.69,79.14,59.36,5.22,27.64,2.94 +2019-10-11 09:00:00,133.26,272.23,58.93,35.79,11.61,1.62,27.56,64.03,34.79,4.93,28.11,2.33 +2019-10-11 10:00:00,123.16,247.42,51.06,34.85,13.58,1.36,46.58,44.99,18.24,4.82,27.13,0.48 +2019-10-11 11:00:00,102.46,204.3,35.15,33.86,15.85,1.14,67.4,30.44,11.0,3.29,18.85,0.19 +2019-10-11 12:00:00,80.65,157.66,29.4,31.32,12.55,0.99,84.93,25.67,8.78,2.86,17.07,0.09 +2019-10-11 13:00:00,67.37,140.17,24.91,30.5,11.33,0.76,102.42,20.56,5.62,2.3,17.3,0.81 +2019-10-11 14:00:00,64.38,136.51,24.18,29.12,11.11,0.73,107.07,19.25,5.73,2.19,14.3,0.91 +2019-10-11 15:00:00,64.39,137.66,27.42,28.4,11.59,0.79,108.47,21.88,10.72,2.33,16.5,1.46 +2019-10-11 16:00:00,65.28,143.18,25.6,28.28,10.71,0.82,104.54,19.41,4.44,2.23,19.52,1.49 +2019-10-11 17:00:00,69.87,159.67,27.34,29.74,10.42,0.93,96.36,19.52,4.3,2.51,30.42,1.7 +2019-10-11 18:00:00,71.61,170.89,42.66,30.19,10.69,1.11,71.03,30.05,6.23,2.63,27.64,4.42 +2019-10-11 19:00:00,73.03,181.56,58.51,31.29,10.66,1.36,41.34,43.6,10.98,3.88,38.52,6.51 +2019-10-11 20:00:00,81.01,204.17,65.84,31.07,10.3,1.43,27.33,55.34,19.82,5.15,43.41,0.85 +2019-10-11 21:00:00,86.7,214.61,67.18,32.86,10.24,1.78,21.29,73.56,39.77,5.85,44.41,2.91 +2019-10-11 22:00:00,106.54,244.0,72.1,32.1,11.07,2.08,20.44,83.21,68.06,6.31,50.67,4.53 +2019-10-11 23:00:00,108.28,239.41,71.87,33.87,11.88,2.14,20.59,95.54,72.38,6.39,52.33,5.7 +2019-10-12 00:00:00,108.11,240.16,67.05,33.85,11.2,1.78,19.91,78.13,64.48,6.46,48.99,8.22 +2019-10-12 01:00:00,104.11,220.35,59.59,33.75,10.74,1.56,21.24,65.47,53.75,6.42,43.87,4.78 +2019-10-12 02:00:00,110.12,205.54,52.83,35.2,9.86,1.46,21.95,56.55,35.67,5.84,39.57,4.4 +2019-10-12 03:00:00,115.27,200.5,49.49,34.45,9.91,1.41,20.03,53.54,46.45,5.2,36.7,4.33 +2019-10-12 04:00:00,120.28,205.0,45.98,32.75,9.06,1.4,18.73,53.83,47.35,5.0,34.44,3.94 +2019-10-12 05:00:00,119.86,204.09,45.52,32.23,9.15,1.43,17.03,58.64,53.07,4.98,33.52,3.57 +2019-10-12 06:00:00,120.61,202.26,44.18,32.74,9.43,1.48,16.92,64.53,62.0,5.02,34.08,3.5 +2019-10-12 07:00:00,125.52,207.18,45.07,33.3,9.97,1.55,17.52,69.46,55.94,5.32,34.85,2.49 +2019-10-12 08:00:00,136.23,229.79,51.71,35.69,10.59,1.64,20.15,77.71,56.57,5.66,30.96,4.03 +2019-10-12 09:00:00,145.82,265.13,56.55,39.62,12.81,1.46,28.24,59.3,29.15,4.82,26.59,3.72 +2019-10-12 10:00:00,146.34,269.2,51.41,38.2,15.41,1.4,46.3,43.93,15.47,4.05,27.47,1.21 +2019-10-12 11:00:00,124.09,237.61,36.84,35.65,14.23,1.08,70.76,29.82,9.53,4.21,27.25,0.36 +2019-10-12 12:00:00,91.49,178.09,28.93,34.76,12.68,0.85,86.35,24.14,8.03,2.74,27.17,0.37 +2019-10-12 13:00:00,71.2,156.24,24.99,34.07,11.36,0.87,96.93,19.49,5.7,2.65,24.92,1.42 +2019-10-12 14:00:00,69.17,151.72,23.43,31.55,11.6,0.9,93.91,18.22,5.51,2.24,18.72,0.85 +2019-10-12 15:00:00,67.72,146.01,23.43,32.67,11.47,0.96,99.5,18.68,6.32,2.15,18.41,1.16 +2019-10-12 16:00:00,67.01,148.15,24.89,31.38,10.41,0.89,92.65,19.39,6.13,2.13,17.21,1.35 +2019-10-12 17:00:00,65.75,151.89,29.16,32.22,10.19,0.85,85.32,21.7,6.01,2.21,26.35,2.03 +2019-10-12 18:00:00,65.01,160.11,42.06,31.37,11.3,1.02,65.46,30.1,7.0,2.79,36.59,3.99 +2019-10-12 19:00:00,71.0,187.43,56.02,30.41,10.93,1.34,39.03,43.01,12.5,4.45,44.13,3.78 +2019-10-12 20:00:00,86.99,230.3,71.11,31.09,10.44,1.66,24.61,66.46,33.09,5.79,41.62,1.68 +2019-10-12 21:00:00,105.23,263.33,80.84,32.26,11.58,2.28,21.46,88.76,69.97,6.46,45.8,2.34 +2019-10-12 22:00:00,120.02,289.38,79.3,32.09,12.5,2.64,20.88,102.15,75.85,7.63,59.53,3.51 +2019-10-12 23:00:00,125.92,276.71,74.57,33.68,13.5,2.61,21.98,110.48,87.59,7.26,62.24,3.98 +2019-10-13 00:00:00,130.85,289.45,73.42,34.72,14.88,2.35,22.0,101.96,79.38,7.35,61.45,5.06 +2019-10-13 01:00:00,139.07,278.68,73.16,35.11,13.26,2.21,24.18,99.51,76.57,7.11,56.39,7.24 +2019-10-13 02:00:00,148.71,269.84,67.66,34.79,11.96,2.14,26.14,95.78,73.59,6.94,53.86,4.7 +2019-10-13 03:00:00,159.93,271.55,61.65,36.24,11.85,2.01,24.99,96.4,77.38,6.65,47.42,4.87 +2019-10-13 04:00:00,165.7,278.58,55.34,34.04,10.78,1.97,25.14,94.23,79.5,6.77,42.75,5.2 +2019-10-13 05:00:00,165.82,274.27,52.23,34.59,10.77,1.88,22.52,87.36,73.75,6.74,44.71,4.64 +2019-10-13 06:00:00,170.15,284.99,47.21,35.22,10.82,1.84,21.06,82.26,81.62,6.81,41.46,8.73 +2019-10-13 07:00:00,170.57,286.38,46.87,35.72,10.18,1.86,21.28,80.87,80.41,6.26,41.28,7.45 +2019-10-13 08:00:00,176.97,306.7,51.17,37.84,11.26,1.93,22.84,88.08,72.15,6.39,40.26,5.64 +2019-10-13 09:00:00,194.15,339.17,58.52,41.81,14.45,1.81,27.56,67.72,38.61,6.25,36.96,4.8 +2019-10-13 10:00:00,200.35,346.04,52.0,39.93,16.87,1.5,47.59,46.12,17.3,5.41,34.99,4.28 +2019-10-13 11:00:00,154.61,275.95,40.02,35.8,18.09,1.24,71.75,33.88,11.6,4.42,29.23,0.7 +2019-10-13 12:00:00,127.71,232.43,34.74,36.31,17.49,1.03,94.51,27.4,7.04,3.72,23.46,1.53 +2019-10-13 13:00:00,122.29,221.48,30.35,35.72,15.01,1.05,101.67,24.03,6.04,3.02,19.6,0.13 +2019-10-13 14:00:00,111.45,206.84,29.28,33.85,14.93,1.04,98.33,22.71,5.09,2.68,18.71,2.16 +2019-10-13 15:00:00,98.46,196.87,32.32,33.41,13.23,1.07,90.75,26.03,6.95,2.27,19.55,1.71 +2019-10-13 16:00:00,84.56,181.44,25.47,33.08,11.51,1.08,83.25,20.57,6.88,2.11,18.13,1.62 +2019-10-13 17:00:00,73.81,168.29,30.49,32.57,9.98,1.11,69.61,25.97,9.5,2.18,26.01,1.47 +2019-10-13 18:00:00,65.47,161.32,43.63,31.96,10.08,1.11,47.02,36.95,12.36,2.64,21.95,4.38 +2019-10-13 19:00:00,71.13,191.47,60.26,30.98,10.39,1.35,30.64,51.85,19.45,3.4,38.35,2.73 +2019-10-13 20:00:00,88.83,239.05,63.5,32.35,10.9,1.68,23.89,64.07,32.72,4.61,44.72,1.74 +2019-10-13 21:00:00,111.49,278.79,66.01,33.23,11.62,1.95,23.49,69.2,52.84,5.36,63.08,2.98 +2019-10-13 22:00:00,120.96,280.27,67.65,34.17,12.79,2.19,24.18,83.09,58.09,5.76,58.17,4.16 +2019-10-13 23:00:00,128.68,270.14,67.45,34.79,13.01,2.31,24.79,91.55,70.4,6.23,52.67,4.24 +2019-10-14 00:00:00,128.86,263.19,65.94,33.81,12.92,2.23,23.77,97.28,89.32,6.05,52.08,3.83 +2019-10-14 01:00:00,128.95,255.0,63.66,34.06,11.52,2.04,21.57,95.1,75.39,5.58,41.57,3.12 +2019-10-14 02:00:00,131.71,246.65,58.91,35.73,10.95,1.86,24.28,90.43,82.96,5.18,38.05,3.19 +2019-10-14 03:00:00,134.83,236.32,53.82,34.75,11.44,1.76,20.66,76.5,70.08,5.22,35.17,3.51 +2019-10-14 04:00:00,133.71,227.15,51.71,32.9,10.62,1.72,18.93,76.76,70.54,5.05,34.33,4.1 +2019-10-14 05:00:00,134.99,228.29,50.0,33.14,10.24,1.67,18.89,81.62,79.05,4.95,36.06,4.64 +2019-10-14 06:00:00,138.66,234.03,46.64,33.8,10.01,1.71,20.01,89.2,87.94,5.06,34.89,7.18 +2019-10-14 07:00:00,141.9,245.73,45.05,34.8,10.31,1.79,19.86,93.26,93.35,5.04,31.64,5.87 +2019-10-14 08:00:00,146.33,266.6,52.1,36.94,10.46,1.78,21.18,93.12,90.66,5.14,30.63,4.06 +2019-10-14 09:00:00,149.34,300.09,64.02,42.87,12.03,1.81,24.53,90.47,61.68,5.01,26.38,5.22 +2019-10-14 10:00:00,147.13,309.79,55.82,40.68,12.56,1.57,38.87,56.64,26.98,4.57,22.47,4.4 +2019-10-14 11:00:00,120.15,261.23,42.76,37.39,13.84,1.28,64.72,38.92,15.31,3.99,19.23,0.53 +2019-10-14 12:00:00,106.16,209.81,32.9,36.18,12.81,0.99,88.68,27.83,8.72,3.27,17.34,2.38 +2019-10-14 13:00:00,97.42,196.14,35.63,34.73,12.05,0.92,99.61,25.89,5.37,2.59,20.25,0.09 +2019-10-14 14:00:00,86.89,183.13,25.98,32.96,10.97,0.9,102.45,19.93,5.53,2.35,21.41,1.35 +2019-10-14 15:00:00,80.93,172.67,23.88,32.98,10.36,0.92,96.02,18.39,5.33,2.29,18.57,1.36 +2019-10-14 16:00:00,72.83,162.57,25.27,32.1,9.43,0.89,88.05,19.62,5.79,2.51,27.74,0.97 +2019-10-14 17:00:00,68.18,163.49,30.22,31.48,9.24,0.91,77.26,23.08,6.48,2.22,35.39,0.84 +2019-10-14 18:00:00,69.51,175.25,46.56,32.39,9.33,1.16,51.58,34.05,8.44,2.97,33.44,3.83 +2019-10-14 19:00:00,81.15,211.95,61.66,32.39,10.43,1.83,29.8,55.11,23.61,4.58,46.35,4.36 +2019-10-14 20:00:00,101.0,257.91,68.07,33.83,11.1,2.32,24.23,76.76,46.22,5.65,65.56,1.35 +2019-10-14 21:00:00,118.39,283.16,72.51,34.04,12.4,2.84,23.56,99.75,85.79,6.6,71.22,3.75 +2019-10-14 22:00:00,130.91,327.0,74.18,34.17,14.58,3.38,23.63,121.63,101.78,7.95,78.72,4.51 +2019-10-14 23:00:00,141.99,330.15,72.63,34.72,15.42,3.33,24.02,136.18,120.46,8.55,70.94,5.67 +2019-10-15 00:00:00,145.5,324.25,70.94,34.09,15.22,3.3,24.88,140.99,128.92,8.8,72.08,8.59 +2019-10-15 01:00:00,141.05,295.04,64.98,35.11,13.18,2.97,25.15,133.9,123.27,8.54,72.95,6.04 +2019-10-15 02:00:00,139.33,283.84,60.08,37.99,12.89,2.75,31.23,124.59,113.74,8.45,67.04,4.29 +2019-10-15 03:00:00,143.93,267.32,56.61,36.44,12.16,2.62,23.14,117.64,108.47,8.3,62.65,4.37 +2019-10-15 04:00:00,137.42,259.02,53.86,32.96,11.8,2.49,26.74,112.0,111.15,8.44,58.32,5.43 +2019-10-15 05:00:00,137.72,264.91,54.22,31.73,12.09,2.61,29.62,120.77,121.46,7.75,61.49,6.32 +2019-10-15 06:00:00,138.94,274.68,53.22,32.87,12.45,2.63,24.81,129.75,133.72,7.06,64.95,7.8 +2019-10-15 07:00:00,143.01,298.44,53.28,35.82,12.23,2.64,24.22,133.19,128.42,6.77,64.27,10.09 +2019-10-15 08:00:00,153.52,309.98,62.25,37.88,12.49,2.72,24.69,139.88,139.13,6.69,61.91,10.67 +2019-10-15 09:00:00,156.78,336.1,77.28,40.42,14.7,2.43,25.88,118.17,86.48,6.92,50.79,10.47 +2019-10-15 10:00:00,147.81,325.1,66.77,40.59,17.86,1.93,37.59,62.85,28.23,5.98,34.78,6.61 +2019-10-15 11:00:00,131.85,285.81,47.99,39.88,14.02,1.49,60.18,38.56,11.34,4.41,22.2,2.36 +2019-10-15 12:00:00,129.94,254.11,36.13,38.8,13.73,1.22,91.29,27.49,7.36,3.93,18.37,2.04 +2019-10-15 13:00:00,111.53,224.81,32.23,37.28,12.61,1.22,111.45,24.27,6.14,3.34,18.27,1.02 +2019-10-15 14:00:00,98.08,203.22,29.52,34.4,12.89,1.02,124.76,21.45,4.43,3.29,15.67,0.55 +2019-10-15 15:00:00,90.02,196.42,31.34,33.89,13.18,1.28,119.48,22.37,5.21,3.41,24.95,0.86 +2019-10-15 16:00:00,87.99,203.18,32.4,32.19,13.22,1.03,123.99,21.95,3.92,3.32,26.17,1.64 +2019-10-15 17:00:00,89.99,210.29,38.66,31.75,12.34,1.12,106.29,25.2,3.57,3.34,34.49,2.94 +2019-10-15 18:00:00,97.14,237.17,59.93,32.8,11.74,1.32,66.84,37.81,5.26,4.57,48.02,7.25 +2019-10-15 19:00:00,113.89,286.55,80.49,34.14,11.54,1.87,40.72,65.98,25.32,5.93,45.07,8.55 +2019-10-15 20:00:00,138.04,347.81,94.23,37.24,12.91,2.71,32.78,94.89,66.51,7.1,50.21,3.81 +2019-10-15 21:00:00,164.78,389.34,90.43,38.41,14.24,3.05,37.98,123.29,85.64,8.54,65.53,6.71 +2019-10-15 22:00:00,177.82,397.63,81.17,39.91,14.83,2.98,37.95,117.15,84.39,9.01,80.39,12.51 +2019-10-15 23:00:00,184.26,371.11,78.67,38.14,15.01,3.0,39.24,121.95,93.62,9.65,64.06,9.98 +2019-10-16 00:00:00,185.5,356.45,68.58,37.73,16.58,2.82,35.03,108.98,82.56,9.12,54.71,9.56 +2019-10-16 01:00:00,181.96,330.5,65.59,38.24,14.34,2.61,28.96,104.78,81.17,7.0,48.08,8.77 +2019-10-16 02:00:00,179.33,314.68,58.97,40.29,13.27,2.39,31.69,102.32,79.07,7.1,44.3,7.39 +2019-10-16 03:00:00,172.12,287.36,56.39,39.63,11.64,2.15,36.7,88.54,72.07,6.74,39.6,5.76 +2019-10-16 04:00:00,164.16,264.59,52.27,37.16,11.11,2.02,33.53,84.84,64.48,5.95,38.11,5.17 +2019-10-16 05:00:00,157.37,258.2,55.6,37.54,10.8,1.86,30.1,75.06,68.79,5.52,36.07,4.95 +2019-10-16 06:00:00,152.41,249.05,52.06,36.9,10.37,1.8,28.17,75.23,68.89,5.49,36.02,4.87 +2019-10-16 07:00:00,152.7,249.73,50.02,37.01,10.29,1.72,25.15,82.9,63.16,5.23,33.45,4.46 +2019-10-16 08:00:00,159.98,264.28,56.62,37.78,10.47,1.84,25.05,83.63,60.47,5.07,33.84,3.04 +2019-10-16 09:00:00,152.09,296.13,64.82,39.47,11.33,1.73,25.37,70.74,38.39,4.89,38.9,6.47 +2019-10-16 10:00:00,140.72,283.41,56.24,40.76,11.88,1.49,34.78,49.82,19.81,4.15,24.06,2.33 +2019-10-16 11:00:00,126.37,266.46,39.04,42.7,12.02,1.22,60.39,31.4,10.38,3.75,18.66,1.25 +2019-10-16 12:00:00,125.57,247.62,30.31,40.92,12.41,1.11,87.6,22.69,5.95,3.4,14.54,0.46 +2019-10-16 13:00:00,125.03,240.88,28.49,39.62,13.18,1.01,109.83,19.93,4.03,3.13,18.25,0.2 +2019-10-16 14:00:00,122.98,236.13,27.63,37.56,14.33,1.1,125.93,18.42,2.97,3.44,18.38,0.2 +2019-10-16 15:00:00,122.66,231.81,29.98,36.33,15.47,1.1,133.48,19.99,3.35,3.5,21.03,0.3 +2019-10-16 16:00:00,123.82,239.6,35.52,35.86,15.43,1.03,129.24,23.96,4.35,3.44,29.01,1.74 +2019-10-16 17:00:00,125.6,249.91,43.87,36.26,14.3,1.09,110.48,28.35,4.12,4.18,39.45,2.18 +2019-10-16 18:00:00,122.95,261.53,58.97,34.64,13.24,1.29,73.97,39.95,7.54,4.99,47.88,4.26 +2019-10-16 19:00:00,125.99,283.78,67.88,37.19,13.01,1.71,46.79,55.13,19.19,6.61,43.66,13.9 +2019-10-16 20:00:00,139.95,325.13,71.96,39.13,14.18,2.2,36.4,71.27,35.52,7.33,48.86,4.88 +2019-10-16 21:00:00,149.6,339.63,71.52,38.06,14.45,2.4,30.51,78.42,44.6,8.19,57.44,1.97 +2019-10-16 22:00:00,154.41,329.43,67.87,37.14,17.18,2.43,29.26,80.16,49.12,7.38,49.37,3.01 +2019-10-16 23:00:00,149.55,308.33,62.62,36.95,15.99,2.28,28.12,74.68,46.13,6.72,42.57,5.78 +2019-10-17 00:00:00,139.6,279.77,58.72,35.6,15.52,1.99,25.34,66.6,39.41,6.51,44.13,4.95 +2019-10-17 01:00:00,132.89,253.89,53.13,36.0,14.33,1.59,26.63,56.02,30.01,6.73,40.54,2.76 +2019-10-17 02:00:00,127.7,232.09,46.89,35.68,14.41,1.35,32.98,48.11,24.84,5.95,35.54,2.05 +2019-10-17 03:00:00,120.41,213.4,46.46,34.0,17.33,1.25,29.12,46.59,24.18,5.27,31.66,1.63 +2019-10-17 04:00:00,118.72,204.05,43.02,33.0,14.54,1.21,28.52,43.19,21.55,4.43,28.33,0.94 +2019-10-17 05:00:00,117.76,198.83,41.81,32.02,10.99,1.22,30.42,41.77,20.09,4.07,24.05,1.85 +2019-10-17 06:00:00,118.23,196.16,41.27,32.55,11.61,1.3,31.0,50.45,31.71,4.04,26.8,0.4 +2019-10-17 07:00:00,129.31,229.62,42.76,34.8,11.87,1.48,27.71,54.42,34.96,4.57,27.28,1.84 +2019-10-17 08:00:00,150.1,280.91,46.45,35.75,15.45,1.58,27.39,55.72,34.36,5.08,28.6,1.27 +2019-10-17 09:00:00,153.64,280.88,51.87,35.79,21.25,1.48,39.43,46.21,19.58,4.69,27.73,7.0 +2019-10-17 10:00:00,156.43,295.78,48.03,38.41,20.32,1.48,47.98,37.66,12.13,4.73,26.97,2.83 +2019-10-17 11:00:00,151.68,296.2,42.82,37.94,16.61,1.31,61.76,30.9,7.61,4.55,22.55,0.81 +2019-10-17 12:00:00,130.8,258.19,35.11,36.56,14.79,1.12,71.6,24.9,5.59,3.78,19.18,0.45 +2019-10-17 13:00:00,106.27,217.63,29.22,34.93,13.84,1.04,85.81,20.72,4.59,3.11,17.27,1.02 +2019-10-17 14:00:00,92.21,194.32,26.76,34.34,13.22,1.0,95.32,19.17,4.31,2.77,13.37,0.92 +2019-10-17 15:00:00,88.11,185.43,27.1,34.0,12.52,0.98,101.04,19.75,5.16,2.64,13.57,0.54 +2019-10-17 16:00:00,87.75,188.01,26.91,32.97,12.16,0.92,103.79,18.24,3.87,2.68,21.35,2.91 +2019-10-17 17:00:00,86.72,197.8,36.09,32.69,12.08,1.02,87.1,23.69,3.6,2.96,29.61,1.82 +2019-10-17 18:00:00,87.36,214.33,52.13,33.32,12.25,1.25,60.16,35.43,7.13,4.08,40.4,3.23 +2019-10-17 19:00:00,99.77,263.0,64.02,35.68,14.05,1.65,44.22,47.25,12.79,5.41,33.56,6.99 +2019-10-17 20:00:00,115.55,295.64,71.1,36.65,17.2,2.04,34.65,61.51,24.62,5.25,41.66,7.2 +2019-10-17 21:00:00,132.53,312.16,67.6,37.14,17.28,2.19,33.83,65.75,31.72,5.58,62.16,0.68 +2019-10-17 22:00:00,138.51,311.89,60.82,36.37,17.36,2.03,32.65,57.0,25.64,5.38,47.01,1.29 +2019-10-17 23:00:00,138.26,284.8,56.21,35.77,17.81,1.97,33.98,54.42,25.18,5.72,35.58,1.15 +2019-10-18 00:00:00,132.7,257.47,52.85,34.39,15.81,1.68,20.24,55.13,27.92,5.47,34.24,2.61 +2019-10-18 01:00:00,128.32,242.07,50.44,34.28,12.11,1.48,27.77,47.16,21.6,5.14,31.39,2.4 +2019-10-18 02:00:00,121.19,219.06,46.69,35.43,13.1,1.32,29.41,43.55,18.77,4.42,28.05,1.59 +2019-10-18 03:00:00,116.67,203.24,43.57,34.12,12.3,1.12,29.34,40.55,17.13,4.06,20.72,0.56 +2019-10-18 04:00:00,111.92,189.68,40.12,32.76,11.09,1.09,22.97,35.61,14.69,3.75,18.37,1.37 +2019-10-18 05:00:00,109.15,181.3,37.78,31.84,10.86,1.03,20.99,32.47,12.46,3.37,15.55,0.92 +2019-10-18 06:00:00,109.71,181.26,36.86,31.09,10.89,1.08,20.27,32.95,13.7,3.31,15.03,0.33 +2019-10-18 07:00:00,109.66,191.26,37.87,31.11,11.55,1.24,21.56,37.93,19.07,3.4,16.45,0.44 +2019-10-18 08:00:00,123.4,224.22,41.32,33.78,12.85,1.39,22.85,47.58,27.84,3.72,16.12,0.48 +2019-10-18 09:00:00,124.88,250.62,46.29,36.88,14.19,1.48,26.03,45.43,21.93,4.09,17.91,2.71 +2019-10-18 10:00:00,122.88,259.68,47.99,39.39,15.59,1.46,37.26,41.58,16.62,4.13,18.13,0.8 +2019-10-18 11:00:00,120.18,258.12,41.31,38.31,15.05,1.39,54.49,33.06,11.82,3.54,18.79,0.39 +2019-10-18 12:00:00,107.75,242.87,34.15,35.84,14.31,1.19,73.84,25.87,6.83,3.65,17.76,0.38 +2019-10-18 13:00:00,88.16,220.15,30.44,34.18,11.78,0.98,76.42,23.15,5.82,3.02,12.26,0.47 +2019-10-18 14:00:00,66.82,170.33,27.3,33.51,10.0,0.97,77.21,21.25,5.4,2.27,9.58,0.65 +2019-10-18 15:00:00,60.48,156.71,25.72,33.92,9.29,0.86,78.92,19.47,4.57,2.14,9.65,0.66 +2019-10-18 16:00:00,59.04,145.24,30.49,32.96,9.4,0.92,74.12,24.11,6.71,2.1,17.43,0.51 +2019-10-18 17:00:00,63.39,163.89,40.17,35.06,10.1,0.91,61.63,29.52,5.32,2.49,24.27,0.68 +2019-10-18 18:00:00,68.36,187.85,51.19,37.68,10.77,1.12,39.25,38.38,8.64,3.46,34.2,1.5 +2019-10-18 19:00:00,77.43,257.16,43.95,36.0,10.01,1.11,42.73,37.67,13.52,4.51,39.42,7.35 +2019-10-18 20:00:00,69.01,360.94,29.76,32.05,8.0,0.86,57.75,25.54,7.75,3.32,30.02,2.9 +2019-10-18 21:00:00,33.06,168.36,30.34,29.62,7.47,0.84,50.0,25.41,8.92,2.21,35.03,1.43 +2019-10-18 22:00:00,22.0,84.22,42.38,30.47,7.93,0.89,32.72,37.24,12.96,2.78,27.49,1.79 +2019-10-18 23:00:00,23.58,65.67,41.78,29.86,8.11,0.9,26.92,34.83,11.32,3.0,22.72,0.56 +2019-10-19 00:00:00,24.71,70.06,49.5,28.3,8.56,0.97,17.24,49.89,24.03,2.93,28.3,0.19 +2019-10-19 01:00:00,28.42,102.83,51.72,29.89,9.1,0.96,17.46,61.72,39.4,3.26,30.24,0.07 +2019-10-19 02:00:00,32.61,100.16,50.37,34.93,8.92,0.78,19.1,55.44,32.49,3.5,38.31,0.37 +2019-10-19 03:00:00,35.66,84.0,40.54,32.2,8.42,0.71,18.81,40.6,17.43,2.94,28.85,0.22 +2019-10-19 04:00:00,37.58,79.91,42.19,30.5,8.51,0.72,18.51,42.79,20.59,2.7,32.73,0.3 +2019-10-19 05:00:00,41.33,108.53,43.95,29.76,8.93,0.77,17.32,53.16,31.04,2.69,30.73,0.53 +2019-10-19 06:00:00,42.07,109.77,45.27,28.0,9.6,0.82,24.05,68.18,48.49,3.04,29.16,1.0 +2019-10-19 07:00:00,51.86,126.68,47.24,29.47,9.99,0.94,29.89,71.95,55.12,3.31,33.6,1.15 +2019-10-19 08:00:00,61.49,145.14,43.55,31.03,10.81,0.96,18.42,59.46,40.99,3.69,33.45,0.64 +2019-10-19 09:00:00,75.22,169.83,45.69,33.4,13.38,0.97,20.77,48.39,25.0,3.29,33.62,3.07 +2019-10-19 10:00:00,97.66,200.23,47.19,36.25,16.18,1.02,32.17,40.79,15.1,3.55,28.42,0.88 +2019-10-19 11:00:00,116.95,237.9,44.53,37.48,15.07,1.08,59.73,36.74,12.08,3.97,26.54,0.27 +2019-10-19 12:00:00,121.71,233.39,37.93,36.96,14.01,0.96,83.5,28.54,7.19,4.0,31.79,0.13 +2019-10-19 13:00:00,103.16,202.15,35.36,34.59,13.15,0.89,104.93,26.32,6.54,3.75,26.96,0.1 +2019-10-19 14:00:00,91.82,184.0,33.58,34.57,12.14,0.91,116.59,23.62,5.34,4.06,22.75,0.16 +2019-10-19 15:00:00,91.79,186.33,34.26,32.86,11.99,0.94,113.58,24.27,5.36,4.36,23.37,0.08 +2019-10-19 16:00:00,90.03,184.42,32.87,32.45,11.54,0.93,103.25,25.11,6.65,3.82,28.19,0.65 +2019-10-19 17:00:00,81.1,191.12,39.19,32.87,13.96,0.86,80.67,31.57,9.93,3.48,28.6,1.49 +2019-10-19 18:00:00,73.01,186.11,54.96,33.46,10.11,1.18,53.13,45.03,14.59,4.08,30.34,3.68 +2019-10-19 19:00:00,82.75,198.53,78.92,35.82,9.85,1.63,24.89,74.12,40.38,5.83,40.22,7.58 +2019-10-19 20:00:00,98.71,249.36,88.83,37.31,11.93,2.07,16.83,94.46,69.26,6.07,37.2,8.18 +2019-10-19 21:00:00,114.21,277.71,88.33,37.86,11.88,2.5,14.44,100.85,78.02,7.46,44.51,3.24 +2019-10-19 22:00:00,120.84,283.85,80.0,38.58,11.61,2.38,14.87,94.34,73.52,8.01,55.43,4.35 +2019-10-19 23:00:00,127.71,284.16,77.02,38.98,12.35,2.3,17.37,97.28,80.01,7.68,54.28,2.22 +2019-10-20 00:00:00,131.5,284.11,69.91,37.8,12.03,1.9,17.65,75.12,58.13,6.44,45.33,1.72 +2019-10-20 01:00:00,122.25,241.29,57.55,35.87,10.57,1.53,17.9,64.02,36.54,5.36,37.22,1.2 +2019-10-20 02:00:00,115.78,207.01,51.52,37.54,9.92,1.31,19.34,54.97,30.93,4.97,30.65,1.04 +2019-10-20 03:00:00,116.24,196.58,48.32,35.85,9.98,1.3,16.29,39.91,28.95,4.73,31.82,0.97 +2019-10-20 04:00:00,121.58,201.49,47.63,33.84,9.33,1.04,14.5,39.96,29.86,4.74,29.7,2.08 +2019-10-20 05:00:00,127.26,208.24,46.64,33.91,9.15,1.04,13.89,51.99,30.96,4.46,30.01,2.56 +2019-10-20 06:00:00,131.04,209.47,45.37,34.25,9.26,1.27,12.96,55.06,34.5,4.46,28.48,1.78 +2019-10-20 07:00:00,135.18,217.43,46.16,35.19,9.06,1.32,12.13,56.4,52.17,4.33,24.35,1.79 +2019-10-20 08:00:00,140.43,242.32,48.83,36.59,9.55,1.5,13.26,74.38,56.52,4.23,23.84,1.88 +2019-10-20 09:00:00,149.43,259.33,53.35,39.36,12.13,1.56,18.39,64.58,37.52,4.46,22.61,3.91 +2019-10-20 10:00:00,150.31,260.27,51.17,38.78,15.46,1.41,33.73,50.06,22.08,4.44,24.18,1.89 +2019-10-20 11:00:00,126.83,230.7,44.01,34.7,14.52,1.15,55.83,41.74,16.94,3.6,20.92,0.28 +2019-10-20 12:00:00,93.14,189.39,35.6,33.08,12.99,0.97,71.58,30.46,9.6,3.22,25.69,0.13 +2019-10-20 13:00:00,66.57,151.64,28.16,29.79,9.94,0.82,69.87,24.43,7.63,2.82,27.77,0.05 +2019-10-20 14:00:00,47.59,121.66,23.78,28.14,9.16,0.63,74.1,20.4,6.58,2.36,21.28,0.13 +2019-10-20 15:00:00,42.58,109.76,22.74,27.28,8.46,0.56,75.28,20.06,7.11,2.01,21.81,0.17 +2019-10-20 16:00:00,38.16,102.99,24.2,26.46,8.49,0.57,74.62,23.67,10.1,1.86,23.07,0.09 +2019-10-20 17:00:00,36.13,108.84,28.31,26.43,8.49,0.61,66.18,27.63,11.67,1.94,28.67,1.22 +2019-10-20 18:00:00,39.55,125.39,44.16,27.67,8.74,0.8,45.43,45.65,20.86,2.26,22.95,2.4 +2019-10-20 19:00:00,52.5,162.9,64.1,29.48,9.52,1.17,22.84,54.72,37.46,3.86,30.57,5.03 +2019-10-20 20:00:00,71.12,219.88,73.3,34.0,10.85,1.62,14.35,80.97,61.66,4.94,43.66,5.42 +2019-10-20 21:00:00,86.45,259.74,74.82,33.84,11.7,1.99,13.08,93.36,76.78,5.45,51.92,1.35 +2019-10-20 22:00:00,98.78,279.97,73.67,34.9,12.57,2.21,13.56,98.12,71.89,5.94,44.29,1.54 +2019-10-20 23:00:00,112.91,285.08,68.64,34.94,13.43,2.08,16.6,95.31,83.52,6.34,46.39,1.77 +2019-10-21 00:00:00,122.11,267.25,62.33,34.36,12.98,1.63,18.74,68.84,45.81,5.53,41.44,5.14 +2019-10-21 01:00:00,132.14,241.48,56.67,34.17,11.1,1.43,18.31,55.76,46.35,5.05,37.01,4.58 +2019-10-21 02:00:00,134.69,245.13,55.05,35.92,10.56,1.35,16.31,57.64,47.93,4.92,34.56,3.9 +2019-10-21 03:00:00,133.15,227.94,51.78,35.4,9.86,1.23,17.46,50.54,39.71,4.91,33.22,3.14 +2019-10-21 04:00:00,132.38,228.17,50.43,33.08,9.15,1.18,14.99,47.03,36.14,4.54,30.57,2.22 +2019-10-21 05:00:00,127.06,221.12,48.41,31.94,9.24,1.14,14.63,60.6,38.44,4.22,27.87,1.95 +2019-10-21 06:00:00,129.09,228.02,47.19,32.01,9.23,1.15,13.28,62.06,43.39,3.75,24.65,2.01 +2019-10-21 07:00:00,136.38,217.73,45.92,32.84,9.45,1.22,12.99,72.23,53.08,3.42,20.59,2.1 +2019-10-21 08:00:00,150.44,256.24,48.11,34.73,10.28,1.44,14.61,75.87,44.79,3.73,20.11,1.95 +2019-10-21 09:00:00,156.87,310.87,55.08,35.93,11.96,1.48,19.21,65.67,36.77,3.95,20.78,3.32 +2019-10-21 10:00:00,165.68,320.75,54.9,37.42,13.88,1.34,37.79,51.39,20.5,4.05,19.2,0.89 +2019-10-21 11:00:00,178.3,337.94,45.46,35.78,14.18,1.2,67.69,39.39,12.16,3.39,19.33,0.47 +2019-10-21 12:00:00,170.88,304.78,41.23,37.02,13.21,1.09,79.99,35.33,10.35,9.48,15.85,0.15 +2019-10-21 13:00:00,141.43,251.39,34.3,32.78,11.74,1.0,84.57,29.77,9.09,3.84,16.52,0.23 +2019-10-21 14:00:00,112.2,212.69,31.1,30.26,10.79,0.89,81.23,27.05,8.12,2.64,13.01,0.13 +2019-10-21 15:00:00,82.26,187.39,31.75,27.28,10.15,0.84,72.45,28.5,10.62,2.33,16.66,0.13 +2019-10-21 16:00:00,60.75,161.36,30.89,25.78,10.29,0.79,70.45,27.92,10.4,2.15,21.04,0.59 +2019-10-21 17:00:00,52.9,148.86,34.08,25.21,9.97,0.81,69.53,33.8,14.0,2.28,20.31,0.95 +2019-10-21 18:00:00,52.26,149.48,46.58,26.97,9.9,0.98,49.99,45.34,19.2,2.5,24.11,1.83 +2019-10-21 19:00:00,56.43,175.17,64.05,27.66,10.08,1.34,28.51,64.19,30.71,3.92,29.35,4.46 +2019-10-21 20:00:00,66.76,211.56,72.35,28.65,10.69,1.68,18.53,71.07,49.59,5.29,48.43,8.35 +2019-10-21 21:00:00,77.74,245.91,75.06,29.78,11.85,2.0,17.48,87.38,68.12,5.98,53.82,11.56 +2019-10-21 22:00:00,90.67,245.49,75.26,30.3,12.94,2.17,20.28,95.68,79.1,6.27,53.63,14.71 +2019-10-21 23:00:00,101.23,243.2,67.19,30.32,13.27,1.87,24.29,77.15,60.66,6.42,46.78,4.54 +2019-10-22 00:00:00,110.75,249.9,62.77,30.19,12.27,1.68,20.0,63.61,48.16,5.57,38.09,1.74 +2019-10-22 01:00:00,123.15,251.76,60.91,30.29,11.35,1.45,18.75,58.98,44.87,5.38,37.37,3.15 +2019-10-22 02:00:00,123.32,229.66,55.71,32.76,10.89,1.21,19.09,62.2,35.68,5.03,32.93,3.11 +2019-10-22 03:00:00,113.35,209.13,48.38,31.72,11.31,1.09,19.72,48.35,22.03,4.17,27.49,3.17 +2019-10-22 04:00:00,111.38,195.91,45.9,30.36,10.75,1.03,20.23,45.76,20.04,3.45,23.44,2.19 +2019-10-22 05:00:00,113.95,186.2,43.92,30.34,10.57,1.08,19.28,45.4,21.42,2.87,20.55,1.46 +2019-10-22 06:00:00,109.71,181.49,42.94,30.62,10.21,1.05,19.77,46.38,24.2,2.7,19.24,1.26 +2019-10-22 07:00:00,107.53,187.33,45.91,30.61,10.12,1.14,18.48,52.19,28.78,2.54,18.24,0.97 +2019-10-22 08:00:00,111.33,216.88,47.28,31.81,11.02,1.29,22.2,57.18,33.39,2.67,21.79,0.82 +2019-10-22 09:00:00,121.32,261.19,48.62,32.75,12.62,1.28,34.46,51.86,25.98,2.91,19.95,1.68 +2019-10-22 10:00:00,125.5,263.51,43.98,32.93,13.21,1.18,57.9,40.6,15.77,2.87,16.2,0.18 +2019-10-22 11:00:00,110.62,239.88,41.95,31.51,12.79,1.04,74.56,37.62,13.24,2.72,15.3,0.11 +2019-10-22 12:00:00,87.96,202.78,34.69,29.57,11.35,0.94,78.86,29.86,11.23,2.73,18.58,0.13 +2019-10-22 13:00:00,70.84,169.92,31.18,26.89,10.62,1.04,77.83,24.93,9.28,2.63,21.08,0.13 +2019-10-22 14:00:00,57.37,149.53,26.91,26.14,9.79,1.15,78.49,23.64,10.35,2.62,16.74,0.13 +2019-10-22 15:00:00,51.34,148.47,33.07,24.13,9.53,0.78,76.21,28.14,11.42,1.91,13.63,0.1 +2019-10-22 16:00:00,42.25,139.67,29.58,23.81,9.23,0.83,75.88,26.62,10.95,1.58,14.77,0.06 +2019-10-22 17:00:00,41.47,134.26,33.48,24.44,9.22,0.87,66.76,31.43,13.56,1.97,17.81,0.66 +2019-10-22 18:00:00,45.47,141.3,50.19,24.81,9.72,1.09,42.44,49.69,23.75,2.84,24.48,1.74 +2019-10-22 19:00:00,57.74,201.25,70.09,27.97,10.71,1.5,19.72,75.09,40.27,4.27,36.28,6.89 +2019-10-22 20:00:00,79.29,247.38,74.84,30.32,12.87,2.13,19.55,106.91,74.39,6.61,48.36,11.43 +2019-10-22 21:00:00,96.96,290.97,77.61,32.03,15.47,2.67,22.52,126.62,96.16,6.97,61.17,10.4 +2019-10-22 22:00:00,112.22,309.15,76.93,34.4,17.4,2.74,22.63,133.97,105.83,7.5,68.14,20.69 +2019-10-22 23:00:00,119.42,310.61,74.29,35.8,17.78,2.52,22.1,124.6,96.01,7.07,63.86,9.41 +2019-10-23 00:00:00,122.28,295.04,70.09,36.24,15.82,2.25,21.8,114.83,87.55,6.14,47.72,2.79 +2019-10-23 01:00:00,124.79,279.64,66.89,35.37,14.02,1.97,21.72,112.35,88.22,5.71,42.56,3.07 +2019-10-23 02:00:00,126.15,261.42,64.81,35.91,13.78,1.72,21.46,112.49,87.75,5.67,38.9,3.92 +2019-10-23 03:00:00,133.37,256.65,56.7,35.36,13.45,1.42,20.32,84.35,58.31,5.33,36.44,3.48 +2019-10-23 04:00:00,134.21,243.25,53.74,32.68,11.53,1.37,19.0,80.36,56.05,4.85,31.96,2.95 +2019-10-23 05:00:00,131.19,237.56,52.5,31.73,11.32,1.3,17.34,77.51,53.87,4.17,29.26,2.36 +2019-10-23 06:00:00,132.86,244.78,51.28,32.24,11.35,1.35,17.74,79.71,56.99,4.14,27.45,2.04 +2019-10-23 07:00:00,132.77,246.49,50.41,33.49,11.42,1.41,18.59,82.45,60.94,3.8,28.58,2.07 +2019-10-23 08:00:00,134.66,262.13,53.49,35.57,12.28,1.59,19.98,85.23,63.22,3.86,25.11,2.18 +2019-10-23 09:00:00,137.63,303.44,61.35,37.17,15.11,1.69,26.56,76.93,49.32,4.08,25.27,2.98 +2019-10-23 10:00:00,148.99,331.69,60.47,37.45,16.64,1.51,42.03,60.27,30.37,4.14,25.39,1.23 +2019-10-23 11:00:00,143.32,300.46,51.18,35.09,15.96,1.66,71.31,45.5,17.35,3.85,20.37,0.96 +2019-10-23 12:00:00,128.32,270.71,38.73,34.07,13.96,1.47,94.02,32.8,11.33,3.32,19.8,0.86 +2019-10-23 13:00:00,116.04,243.38,36.29,33.38,13.66,1.21,105.1,29.92,9.42,2.97,18.0,0.13 +2019-10-23 14:00:00,109.54,227.62,31.87,31.16,12.84,1.03,107.85,25.65,7.78,3.06,16.15,0.09 +2019-10-23 15:00:00,92.11,199.3,30.97,29.77,12.84,1.03,97.48,25.8,8.73,2.97,22.25,0.14 +2019-10-23 16:00:00,78.02,192.3,28.81,27.2,12.11,0.9,88.85,23.44,7.7,2.41,18.86,0.09 +2019-10-23 17:00:00,69.03,185.66,39.69,26.44,11.4,1.05,73.42,33.69,11.66,2.97,26.36,0.51 +2019-10-23 18:00:00,70.57,195.67,60.31,27.42,11.49,1.39,45.95,53.95,21.16,4.29,33.21,2.35 +2019-10-23 19:00:00,85.47,240.38,75.07,33.29,12.28,1.8,25.94,74.67,38.02,5.27,38.54,7.03 +2019-10-23 20:00:00,115.44,282.11,88.32,37.51,13.7,2.5,22.67,122.68,100.25,6.85,51.29,4.64 +2019-10-23 21:00:00,139.89,342.69,90.98,40.62,17.46,3.3,24.2,147.74,120.42,6.63,62.52,2.46 +2019-10-23 22:00:00,158.55,386.36,89.19,42.98,18.69,3.94,25.12,169.79,144.56,7.73,71.03,5.46 +2019-10-23 23:00:00,165.58,417.2,87.02,43.0,24.77,4.18,31.15,173.54,154.68,8.5,65.95,6.72 +2019-10-24 00:00:00,178.88,419.2,85.36,45.6,23.55,4.14,40.94,176.55,159.79,9.4,68.1,11.1 +2019-10-24 01:00:00,187.01,416.15,83.47,45.0,21.5,3.75,38.88,185.84,160.19,9.62,66.87,16.08 +2019-10-24 02:00:00,188.37,392.25,75.9,45.43,21.77,3.5,46.15,185.35,161.39,9.2,56.99,11.0 +2019-10-24 03:00:00,180.14,356.29,68.83,43.95,17.56,3.17,49.64,161.92,138.47,8.82,54.65,7.16 +2019-10-24 04:00:00,179.71,336.43,65.23,40.55,18.6,3.07,37.76,154.35,142.09,8.63,61.15,5.17 +2019-10-24 05:00:00,178.2,320.26,62.14,40.39,16.73,3.05,36.92,161.55,141.97,8.43,58.78,4.29 +2019-10-24 06:00:00,185.09,327.92,61.01,41.06,16.84,2.99,37.99,151.83,142.88,8.71,58.2,4.16 +2019-10-24 07:00:00,197.71,342.56,59.21,41.59,19.46,2.92,35.43,157.78,152.24,8.3,57.03,4.98 +2019-10-24 08:00:00,211.16,373.63,69.62,43.77,25.36,3.06,39.42,170.05,160.17,8.11,53.14,5.36 +2019-10-24 09:00:00,223.91,438.86,89.91,48.13,20.69,2.71,50.82,147.51,114.64,7.53,50.11,4.88 +2019-10-24 10:00:00,237.48,464.47,99.9,51.6,26.53,2.38,61.24,101.66,52.08,7.03,45.67,16.8 +2019-10-24 11:00:00,239.33,441.34,82.0,49.13,26.19,1.95,82.08,68.22,24.68,6.2,38.34,11.55 +2019-10-24 12:00:00,187.25,342.85,53.15,41.69,21.93,1.34,87.0,42.06,12.99,4.56,33.38,5.31 +2019-10-24 13:00:00,135.02,253.01,38.27,38.44,17.99,1.12,108.96,28.66,7.39,3.63,29.54,0.91 +2019-10-24 14:00:00,131.96,243.59,32.62,36.74,16.37,1.03,122.24,24.29,6.12,3.4,28.66,1.06 +2019-10-24 15:00:00,121.78,233.84,29.92,35.12,15.16,0.94,113.62,21.63,5.3,3.19,25.02,0.75 +2019-10-24 16:00:00,110.24,211.2,29.67,33.91,12.87,0.87,107.42,21.94,5.82,3.08,33.54,1.25 +2019-10-24 17:00:00,104.99,211.54,38.43,31.98,11.93,0.99,78.78,26.5,5.77,3.33,35.37,1.38 +2019-10-24 18:00:00,109.18,241.83,62.0,37.6,12.04,1.41,44.45,45.06,12.07,4.85,40.13,0.38 +2019-10-24 19:00:00,132.1,310.22,80.88,40.71,13.12,2.1,31.17,76.16,35.76,6.28,57.87,0.59 +2019-10-24 20:00:00,166.44,359.38,87.23,40.24,15.29,2.76,29.08,117.92,78.73,7.65,53.27,1.42 +2019-10-24 21:00:00,185.61,426.28,91.0,42.66,18.4,3.21,33.34,140.97,105.63,9.65,80.75,2.53 +2019-10-24 22:00:00,195.31,431.4,86.78,43.11,19.05,3.3,39.26,122.47,87.41,9.11,76.26,4.0 +2019-10-24 23:00:00,198.52,421.75,84.04,42.23,23.95,3.3,38.04,123.97,104.26,9.55,58.38,5.05 +2019-10-25 00:00:00,196.69,389.81,74.33,42.49,22.42,3.05,40.58,116.78,88.38,9.94,57.85,4.69 +2019-10-25 01:00:00,184.96,347.27,68.66,39.07,17.95,2.32,35.61,109.57,70.43,7.88,54.01,5.07 +2019-10-25 02:00:00,170.79,318.82,61.55,39.2,17.42,1.86,39.77,93.19,66.81,6.54,44.29,11.97 +2019-10-25 03:00:00,148.68,257.15,51.49,38.21,12.28,1.41,34.61,60.29,35.54,5.65,35.43,3.1 +2019-10-25 04:00:00,129.69,215.87,45.65,36.45,14.88,1.21,29.75,47.84,25.05,4.83,32.78,6.9 +2019-10-25 05:00:00,118.44,199.49,43.85,35.46,12.01,1.17,27.51,44.93,23.04,4.31,31.89,1.05 +2019-10-25 06:00:00,121.17,214.61,45.54,34.09,10.28,1.28,27.72,56.65,35.17,4.18,30.33,0.77 +2019-10-25 07:00:00,126.21,228.84,44.16,35.38,10.85,1.37,20.09,57.22,37.84,4.11,29.26,0.63 +2019-10-25 08:00:00,138.27,248.82,49.11,39.02,15.32,1.54,20.56,69.38,49.24,4.5,28.87,0.41 +2019-10-25 09:00:00,142.08,276.36,51.59,39.82,14.65,1.42,31.25,52.09,26.34,4.37,25.56,0.47 +2019-10-25 10:00:00,133.92,274.54,46.05,37.84,14.13,1.29,45.24,40.33,16.0,3.63,20.45,0.41 +2019-10-25 11:00:00,115.76,266.19,39.18,38.02,13.78,1.16,63.01,30.64,9.56,3.22,18.37,0.66 +2019-10-25 12:00:00,103.47,229.11,33.4,37.08,13.91,1.01,81.22,25.79,7.76,2.78,15.31,0.46 +2019-10-25 13:00:00,91.59,203.08,30.15,34.92,13.73,0.93,97.25,22.38,5.68,2.61,14.12,0.51 +2019-10-25 14:00:00,88.09,194.02,27.75,36.28,14.99,0.92,112.43,20.06,4.85,2.64,14.65,0.19 +2019-10-25 15:00:00,91.19,192.17,28.48,33.4,14.27,1.04,110.15,22.29,6.62,2.6,17.89,0.17 +2019-10-25 16:00:00,89.16,195.83,29.42,32.34,13.37,0.91,114.68,25.09,8.42,2.63,23.83,0.05 +2019-10-25 17:00:00,87.32,198.06,33.81,31.63,12.73,1.0,97.53,25.64,7.06,3.0,29.9,0.09 +2019-10-25 18:00:00,94.24,219.91,50.92,33.5,11.71,1.3,58.68,37.44,11.23,3.85,38.46,0.13 +2019-10-25 19:00:00,106.73,281.35,73.99,35.35,12.38,1.95,33.1,72.89,36.5,5.15,41.03,0.34 +2019-10-25 20:00:00,131.45,334.47,86.88,37.66,16.48,2.68,27.98,121.23,85.62,6.57,66.09,1.09 +2019-10-25 21:00:00,159.08,388.28,85.68,36.1,19.25,3.22,31.41,125.83,108.71,8.33,68.93,1.53 +2019-10-25 22:00:00,169.31,407.08,82.26,42.1,21.24,3.61,34.46,136.08,122.05,9.31,63.01,2.45 +2019-10-25 23:00:00,179.42,419.64,77.26,43.03,23.96,3.6,39.45,139.91,130.07,9.07,59.88,2.97 +2019-10-26 00:00:00,183.57,404.62,74.33,42.66,19.91,3.38,36.93,150.45,131.98,9.15,62.95,3.42 +2019-10-26 01:00:00,186.45,388.44,73.22,43.04,15.49,2.95,42.45,135.87,124.71,7.97,61.15,3.33 +2019-10-26 02:00:00,176.42,355.25,65.55,44.8,14.52,2.62,45.5,133.54,111.02,6.93,57.58,3.18 +2019-10-26 03:00:00,164.61,319.66,57.54,38.31,12.86,2.35,37.75,134.28,109.73,6.65,53.27,2.71 +2019-10-26 04:00:00,154.82,291.26,55.42,43.66,12.62,2.08,31.16,127.28,89.43,6.34,46.22,2.54 +2019-10-26 05:00:00,143.56,262.1,53.55,38.09,11.0,1.8,28.05,108.72,88.76,5.62,39.57,2.01 +2019-10-26 06:00:00,132.95,229.7,50.18,37.42,9.78,1.67,22.3,99.86,82.38,5.38,40.53,1.54 +2019-10-26 07:00:00,132.14,231.92,50.6,41.2,10.11,1.54,21.02,93.81,75.56,5.36,38.34,1.17 +2019-10-26 08:00:00,138.64,246.88,48.56,38.27,10.1,1.53,20.39,80.65,61.12,5.05,41.07,1.17 +2019-10-26 09:00:00,151.9,278.81,55.93,42.66,12.17,1.49,23.42,69.06,42.48,4.89,34.84,1.14 +2019-10-26 10:00:00,158.36,307.2,53.33,43.71,13.41,1.35,32.62,54.81,27.7,4.41,24.14,0.94 +2019-10-26 11:00:00,130.61,257.89,45.34,41.97,13.18,1.2,50.97,41.49,18.04,3.92,21.24,0.74 +2019-10-26 12:00:00,117.29,233.5,35.2,40.34,12.19,1.0,72.09,31.54,12.9,3.54,18.99,0.58 +2019-10-26 13:00:00,97.21,192.46,28.75,37.52,11.26,0.92,88.66,24.97,9.99,3.04,17.27,0.46 +2019-10-26 14:00:00,88.66,173.98,27.74,35.81,11.62,0.9,101.25,22.78,8.13,3.01,15.98,0.26 +2019-10-26 15:00:00,91.63,180.14,25.81,34.61,11.74,0.89,117.73,19.3,5.39,2.67,19.41,0.09 +2019-10-26 16:00:00,99.17,191.36,27.02,33.04,11.24,0.87,120.92,19.94,5.4,3.21,22.88,0.07 +2019-10-26 17:00:00,106.66,215.94,36.39,34.07,11.45,1.04,99.65,26.19,6.85,3.47,25.7,0.1 +2019-10-26 18:00:00,116.8,248.1,57.33,36.88,11.39,1.39,60.43,42.45,11.23,4.19,27.05,0.19 +2019-10-26 19:00:00,136.23,311.34,77.9,38.69,12.04,1.93,38.81,77.95,37.56,5.36,38.37,0.41 +2019-10-26 20:00:00,168.8,361.12,89.61,43.0,13.48,2.6,32.61,104.5,61.93,5.46,42.78,0.85 +2019-10-26 21:00:00,207.04,392.32,90.2,44.71,13.95,3.18,29.09,125.29,97.21,6.24,49.33,2.15 +2019-10-26 22:00:00,233.09,444.53,89.28,44.85,15.0,3.56,29.66,134.64,112.14,7.87,63.59,3.13 +2019-10-26 23:00:00,253.01,455.83,85.61,43.97,15.81,3.76,30.64,156.17,136.86,8.37,69.13,4.38 +2019-10-27 00:00:00,265.03,451.8,77.51,43.62,15.27,3.88,32.69,148.83,129.14,8.28,78.24,4.8 +2019-10-27 01:00:00,263.98,441.59,70.69,46.78,13.76,3.49,33.0,145.8,128.24,7.71,59.55,3.79 +2019-10-27 02:00:00,258.95,412.14,66.03,49.27,12.83,3.14,31.75,140.88,115.16,7.94,65.09,3.68 +2019-10-27 03:00:00,252.38,387.15,60.61,51.92,12.21,2.8,29.96,123.26,96.99,7.41,57.54,3.4 +2019-10-27 04:00:00,234.54,357.68,59.87,52.72,11.48,2.34,26.37,109.85,86.24,7.16,55.02,3.4 +2019-10-27 05:00:00,223.57,338.77,57.78,50.02,10.97,2.0,22.68,89.99,64.7,6.71,43.73,3.9 +2019-10-27 06:00:00,210.8,312.8,50.76,45.77,10.1,1.64,21.2,71.78,36.43,5.74,35.63,3.01 +2019-10-27 07:00:00,201.53,292.51,46.87,42.95,9.07,1.46,23.2,57.66,35.71,5.38,30.47,1.71 +2019-10-27 08:00:00,195.8,293.93,45.94,43.16,8.93,1.43,25.1,54.25,32.18,4.95,27.22,1.36 +2019-10-27 09:00:00,200.24,309.27,44.09,43.16,10.19,1.44,30.48,46.47,24.62,4.34,25.01,0.85 +2019-10-27 10:00:00,210.06,333.93,41.5,46.87,11.51,1.38,45.69,40.1,18.7,4.35,21.77,0.63 +2019-10-27 11:00:00,218.42,343.23,38.01,46.46,11.7,1.31,67.38,33.96,13.54,4.17,18.6,0.64 +2019-10-27 12:00:00,216.48,346.35,33.77,43.03,12.19,1.24,92.16,28.68,9.94,4.1,16.64,0.29 +2019-10-27 13:00:00,190.74,306.43,26.98,37.28,11.74,0.92,99.41,23.41,8.59,3.66,14.89,0.3 +2019-10-27 14:00:00,132.52,228.46,23.77,31.93,10.31,0.78,93.53,21.93,8.89,2.82,12.17,0.07 +2019-10-27 15:00:00,93.22,177.51,21.36,28.63,10.0,0.74,90.82,21.17,8.74,2.26,9.97,0.07 +2019-10-27 16:00:00,68.68,149.81,21.4,27.6,9.76,0.71,89.0,20.84,8.75,1.95,8.97,0.07 +2019-10-27 17:00:00,59.61,140.59,25.9,27.4,9.86,0.76,77.13,23.91,9.3,1.86,8.76,0.05 +2019-10-27 18:00:00,63.07,150.51,41.97,29.24,9.86,1.02,52.35,39.91,16.86,2.27,10.94,0.06 +2019-10-27 19:00:00,86.11,208.13,55.63,31.55,9.89,1.43,30.36,53.78,23.92,3.68,18.71,0.2 +2019-10-27 20:00:00,120.61,273.08,63.54,33.05,11.13,1.86,22.71,73.14,41.42,4.81,24.16,0.72 +2019-10-27 21:00:00,195.53,353.15,63.91,33.66,15.31,2.14,24.19,85.94,55.76,5.22,28.87,1.08 +2019-10-27 22:00:00,334.99,492.41,62.23,36.2,28.27,2.29,32.0,94.48,66.66,5.58,28.95,1.56 +2019-10-27 23:00:00,474.52,619.19,60.86,38.8,40.67,2.33,41.29,103.82,78.7,5.65,28.63,1.78 +2019-10-28 00:00:00,528.22,607.66,58.77,42.07,43.66,2.25,19.24,104.39,68.11,5.62,27.52,2.05 +2019-10-28 01:00:00,597.88,626.98,53.98,42.58,37.99,2.04,18.36,97.91,74.61,5.34,27.61,2.49 +2019-10-28 02:00:00,567.0,655.13,50.17,45.1,31.47,1.8,16.8,76.43,52.83,5.01,24.45,2.6 +2019-10-28 03:00:00,544.5,628.6,45.4,43.61,23.3,1.62,29.11,59.36,36.42,4.54,21.05,1.73 +2019-10-28 04:00:00,478.61,542.08,39.98,41.15,17.29,1.47,28.65,44.85,23.48,4.67,19.83,1.27 +2019-10-28 05:00:00,409.59,488.56,36.43,40.95,17.39,1.38,26.45,38.99,19.67,4.41,18.7,0.92 +2019-10-28 06:00:00,324.73,428.78,34.3,39.7,16.24,1.32,26.26,37.31,19.01,4.79,17.47,0.75 +2019-10-28 07:00:00,266.07,356.4,35.75,37.69,12.02,1.34,24.03,39.4,20.1,4.42,15.65,0.65 +2019-10-28 08:00:00,242.56,341.12,39.66,37.27,11.47,1.37,23.52,48.45,28.68,4.52,15.07,0.37 +2019-10-28 09:00:00,240.78,371.23,43.59,39.4,14.93,1.45,30.04,46.32,23.37,4.27,14.57,0.34 +2019-10-28 10:00:00,249.68,402.0,41.91,40.81,15.91,1.47,42.3,40.62,17.5,4.23,13.66,0.51 +2019-10-28 11:00:00,258.59,408.58,38.59,41.31,15.72,1.45,61.32,34.34,12.42,4.2,13.67,0.58 +2019-10-28 12:00:00,259.36,396.78,37.04,43.9,15.69,1.44,83.91,30.06,9.45,4.12,13.63,0.42 +2019-10-28 13:00:00,242.83,382.44,32.83,40.38,15.38,1.32,101.19,26.74,8.65,3.93,13.49,0.23 +2019-10-28 14:00:00,204.62,325.07,29.52,36.49,15.04,1.18,103.57,25.18,9.42,3.8,12.49,0.14 +2019-10-28 15:00:00,174.14,279.84,29.93,34.75,14.41,1.18,95.25,26.42,9.75,3.36,11.38,0.07 +2019-10-28 16:00:00,162.0,264.59,34.82,33.98,13.75,1.25,78.06,33.38,14.42,3.31,11.26,0.06 +2019-10-28 17:00:00,155.34,268.9,47.37,34.69,13.6,1.36,54.71,43.26,18.15,3.42,13.69,0.05 +2019-10-28 18:00:00,157.36,290.93,64.06,36.29,12.99,1.7,33.83,55.24,21.02,4.12,18.65,0.14 +2019-10-28 19:00:00,171.83,328.84,73.97,38.07,12.7,2.11,26.71,77.35,39.72,4.73,25.03,0.4 +2019-10-28 20:00:00,197.49,364.45,79.42,39.36,14.2,2.59,24.98,92.61,54.2,5.49,28.4,0.73 +2019-10-28 21:00:00,234.87,411.74,79.28,42.27,14.45,2.9,24.61,116.13,79.63,5.97,33.73,1.23 +2019-10-28 22:00:00,270.27,443.87,69.12,45.46,16.0,3.14,26.46,114.2,84.68,6.16,39.94,1.61 +2019-10-28 23:00:00,294.99,473.91,66.9,46.52,17.05,3.31,27.68,124.51,97.4,6.56,42.35,2.61 +2019-10-29 00:00:00,316.14,461.91,64.04,47.89,16.5,3.22,29.82,134.14,109.28,6.59,39.93,3.52 +2019-10-29 01:00:00,332.57,469.69,55.93,50.51,14.58,2.99,30.24,130.1,109.59,6.83,44.72,5.06 +2019-10-29 02:00:00,338.18,455.35,50.54,53.12,13.92,2.76,31.42,114.46,94.8,6.87,42.23,5.08 +2019-10-29 03:00:00,324.9,443.51,52.86,48.89,12.47,2.39,31.47,110.84,89.81,6.38,40.99,5.85 +2019-10-29 04:00:00,304.14,415.9,50.63,47.74,11.73,2.19,28.82,92.06,70.28,6.71,41.27,6.83 +2019-10-29 05:00:00,284.76,389.85,45.82,46.64,10.59,1.79,24.16,64.77,42.28,6.05,33.41,4.72 +2019-10-29 06:00:00,262.72,360.16,41.44,44.31,10.11,1.55,21.45,52.73,32.38,5.11,27.92,2.44 +2019-10-29 07:00:00,248.15,348.35,40.53,42.01,9.57,1.57,21.36,57.52,37.49,4.87,27.56,1.64 +2019-10-29 08:00:00,248.63,357.66,46.11,41.65,9.65,1.78,21.28,74.21,52.68,4.76,25.68,1.48 +2019-10-29 09:00:00,243.84,371.73,49.87,45.03,11.34,1.72,22.48,63.0,38.22,5.13,23.37,1.32 +2019-10-29 10:00:00,232.36,377.28,50.35,46.95,12.73,1.8,27.46,57.06,31.6,4.64,23.13,0.91 +2019-10-29 11:00:00,234.54,394.19,52.38,48.72,13.39,1.82,31.86,53.83,26.68,4.76,24.46,0.68 +2019-10-29 12:00:00,248.82,414.81,53.16,50.53,13.55,1.91,41.27,51.17,23.41,5.23,26.61,0.56 +2019-10-29 13:00:00,264.69,429.64,52.73,51.05,13.35,1.91,51.82,43.77,15.05,5.04,30.66,0.6 +2019-10-29 14:00:00,276.65,442.68,49.74,49.54,13.23,1.91,61.78,38.72,11.46,5.13,30.42,0.43 +2019-10-29 15:00:00,290.22,455.93,57.8,50.04,13.23,2.08,64.62,48.08,16.65,4.93,30.72,0.58 +2019-10-29 16:00:00,304.03,478.18,66.48,49.18,12.58,2.12,51.35,55.71,20.24,5.29,29.54,0.49 +2019-10-29 17:00:00,295.57,483.3,72.49,48.75,12.2,2.22,39.72,63.94,26.28,5.44,33.9,0.46 +2019-10-29 18:00:00,289.5,478.9,80.29,48.18,11.48,2.42,30.22,72.28,30.39,5.86,38.85,0.48 +2019-10-29 19:00:00,297.75,498.47,86.22,49.63,11.88,2.95,26.88,99.27,57.08,6.18,46.81,1.09 +2019-10-29 20:00:00,305.15,510.1,86.04,52.21,13.04,3.32,26.04,124.35,85.35,6.33,48.92,1.98 +2019-10-29 21:00:00,306.75,499.07,80.52,53.03,13.81,3.7,25.48,141.31,104.97,7.04,53.31,2.68 +2019-10-29 22:00:00,317.03,511.07,77.6,55.45,14.41,4.1,26.42,167.02,134.76,7.13,60.96,2.06 +2019-10-29 23:00:00,334.39,530.82,77.26,55.06,15.61,4.03,29.29,171.34,139.99,6.65,66.79,1.92 +2019-10-30 00:00:00,332.37,523.63,74.84,54.08,15.42,3.99,28.19,175.08,134.41,6.96,64.25,1.66 +2019-10-30 01:00:00,324.82,508.71,70.44,59.08,13.73,3.66,27.01,180.55,141.01,7.4,64.37,1.72 +2019-10-30 02:00:00,317.07,478.34,65.86,61.03,13.64,3.48,27.8,175.2,159.08,7.61,63.31,1.53 +2019-10-30 03:00:00,311.95,462.21,58.7,59.18,13.34,3.25,27.55,149.02,138.56,7.79,60.66,1.47 +2019-10-30 04:00:00,304.17,452.88,61.8,60.02,12.81,2.9,27.26,153.7,134.29,7.4,58.82,1.96 +2019-10-30 05:00:00,286.81,418.03,55.8,58.45,11.62,2.36,23.57,120.32,99.44,6.87,49.27,2.66 +2019-10-30 06:00:00,255.43,383.87,53.25,55.79,10.6,2.0,21.71,96.84,73.83,6.25,40.71,2.66 +2019-10-30 07:00:00,231.53,349.82,48.9,48.15,10.25,2.05,20.18,89.74,67.71,5.59,36.51,1.99 +2019-10-30 08:00:00,204.68,331.55,50.13,45.62,10.64,1.9,19.41,95.54,73.76,5.03,33.3,1.4 +2019-10-30 09:00:00,185.48,332.64,51.77,46.14,11.74,1.86,19.87,89.68,68.3,5.23,30.89,1.17 +2019-10-30 10:00:00,179.49,353.33,59.18,49.05,13.12,1.88,21.19,88.83,62.48,5.48,28.18,1.07 +2019-10-30 11:00:00,193.17,388.12,65.36,52.65,14.05,1.84,25.94,77.32,44.75,5.25,31.42,1.04 +2019-10-30 12:00:00,231.57,418.07,54.92,49.57,15.1,1.67,42.3,56.98,27.48,4.96,36.02,0.86 +2019-10-30 13:00:00,297.31,474.33,47.56,53.6,14.95,1.66,63.35,42.01,15.84,5.5,36.66,0.69 +2019-10-30 14:00:00,334.85,514.98,45.3,53.6,14.27,1.69,79.11,39.61,14.35,5.01,32.49,0.48 +2019-10-30 15:00:00,344.76,516.46,45.92,52.26,13.77,1.71,76.09,41.08,15.6,5.05,31.86,0.3 +2019-10-30 16:00:00,331.57,506.02,51.12,48.79,13.2,1.67,67.64,44.91,18.16,4.74,29.54,0.11 +2019-10-30 17:00:00,305.79,473.62,59.52,47.81,12.81,1.77,46.65,56.02,25.99,5.16,30.97,0.1 +2019-10-30 18:00:00,277.15,461.7,78.99,46.92,12.27,2.22,30.54,83.41,44.15,5.65,38.03,0.61 +2019-10-30 19:00:00,281.39,485.83,90.61,49.69,12.75,2.89,26.58,127.09,84.49,6.5,55.22,1.14 +2019-10-30 20:00:00,287.09,504.34,92.57,51.03,15.18,3.64,27.55,149.78,125.49,8.51,75.87,2.35 +2019-10-30 21:00:00,292.3,531.13,87.04,51.97,17.09,4.24,28.92,176.25,156.77,9.01,79.55,5.09 +2019-10-30 22:00:00,294.75,523.34,84.15,53.24,18.66,4.71,28.46,200.64,182.54,9.84,85.52,6.75 +2019-10-30 23:00:00,298.16,511.56,79.17,59.96,20.32,5.08,29.69,217.62,196.2,10.02,94.66,8.55 +2019-10-31 00:00:00,298.27,490.0,70.68,57.46,19.64,4.51,31.44,212.4,195.76,9.86,90.69,8.6 +2019-10-31 01:00:00,286.0,461.48,69.98,68.28,17.16,4.21,31.48,195.22,196.9,8.75,82.59,9.22 +2019-10-31 02:00:00,278.98,431.84,67.16,71.85,16.2,3.8,32.33,176.81,170.19,9.07,77.06,8.61 +2019-10-31 03:00:00,269.2,405.39,62.66,64.65,14.06,3.29,27.66,164.02,148.78,9.01,86.18,7.73 +2019-10-31 04:00:00,251.47,382.12,58.81,60.62,13.7,2.72,24.03,137.11,126.66,8.19,72.69,7.7 +2019-10-31 05:00:00,238.26,358.11,55.71,55.59,12.64,2.41,21.78,132.32,112.88,7.25,61.76,4.99 +2019-10-31 06:00:00,230.87,350.74,53.84,52.27,12.69,2.33,20.06,137.12,120.71,6.97,54.95,3.97 +2019-10-31 07:00:00,225.33,346.45,53.59,48.59,12.8,2.37,20.49,122.52,117.37,6.42,47.49,3.56 +2019-10-31 08:00:00,223.58,361.43,56.53,48.1,13.3,2.42,20.88,145.79,130.21,6.03,45.24,2.71 +2019-10-31 09:00:00,227.6,396.81,64.4,50.65,14.24,2.31,21.99,132.67,108.07,6.1,42.52,2.33 +2019-10-31 10:00:00,232.81,436.89,74.09,48.21,16.97,2.18,26.28,111.76,78.28,5.89,39.6,2.77 +2019-10-31 11:00:00,247.62,456.53,76.28,51.37,18.77,2.0,33.34,81.62,42.86,5.81,47.65,2.7 +2019-10-31 12:00:00,265.36,470.38,67.41,52.79,17.71,1.88,43.46,63.22,28.49,5.18,45.19,2.04 +2019-10-31 13:00:00,279.94,481.38,57.61,55.83,17.26,1.79,63.74,48.49,17.1,4.92,38.65,1.19 +2019-10-31 14:00:00,323.07,509.16,52.83,52.05,16.87,1.77,81.61,41.99,12.38,5.39,36.4,1.07 +2019-10-31 15:00:00,354.02,539.65,54.54,52.47,16.12,1.86,88.16,45.01,14.34,5.18,37.33,0.65 +2019-10-31 16:00:00,375.1,572.98,60.1,51.25,15.07,2.02,76.32,53.32,21.26,5.64,40.3,0.61 +2019-10-31 17:00:00,384.15,591.34,75.71,49.59,14.75,2.22,52.17,65.32,26.34,6.21,41.15,0.45 +2019-10-31 18:00:00,388.34,614.66,99.78,52.88,13.94,2.8,36.57,100.04,49.46,7.55,53.36,1.4 +2019-10-31 19:00:00,411.82,650.75,105.97,54.9,14.47,3.47,32.99,134.27,96.99,7.32,70.59,2.61 +2019-10-31 20:00:00,434.45,679.25,101.71,57.46,16.67,4.01,32.66,164.46,134.91,7.56,76.53,3.55 +2019-10-31 21:00:00,444.71,679.8,95.7,57.92,17.26,4.52,32.92,161.13,137.85,9.8,99.4,3.6 +2019-10-31 22:00:00,439.95,677.92,90.21,60.89,18.39,4.65,33.78,167.8,146.8,10.01,82.28,5.1 +2019-10-31 23:00:00,432.82,655.93,87.51,57.27,19.99,4.62,32.94,172.6,155.42,10.27,81.36,5.89 +2019-11-01 00:00:00,419.37,623.04,81.94,61.7,19.41,4.1,32.09,162.76,146.44,9.79,79.25,6.5 +2019-11-01 01:00:00,410.43,596.54,77.19,62.21,16.83,3.51,30.46,152.29,138.22,9.43,74.52,6.51 +2019-11-01 02:00:00,412.69,584.13,70.48,64.0,15.43,3.29,32.92,143.91,118.95,8.74,82.97,7.17 +2019-11-01 03:00:00,427.99,603.54,65.2,63.04,14.27,3.02,33.02,120.55,94.25,7.96,72.14,8.07 +2019-11-01 04:00:00,450.66,621.78,63.98,65.76,13.07,2.8,32.33,110.66,83.94,7.29,65.58,6.99 +2019-11-01 05:00:00,450.85,620.96,59.88,66.15,12.97,2.56,30.33,99.36,73.57,7.2,58.19,4.66 +2019-11-01 06:00:00,446.61,607.71,57.28,64.7,13.86,2.53,29.31,107.78,84.63,7.03,54.63,3.74 +2019-11-01 07:00:00,443.9,603.13,54.86,64.54,13.8,2.79,29.09,121.09,102.99,6.56,55.53,2.91 +2019-11-01 08:00:00,444.3,621.39,61.13,66.55,15.73,3.12,32.09,144.64,124.98,6.64,56.34,2.21 +2019-11-01 09:00:00,451.9,654.09,79.26,65.4,15.66,3.25,33.43,140.36,109.36,6.85,56.18,2.41 +2019-11-01 10:00:00,463.95,701.78,98.61,69.01,17.92,3.04,38.1,121.49,70.94,7.11,49.91,2.78 +2019-11-01 11:00:00,461.57,686.56,87.24,63.01,20.0,2.36,52.61,75.23,25.76,6.64,45.19,2.57 +2019-11-01 12:00:00,425.42,636.33,80.01,58.58,20.12,2.16,78.49,60.35,14.76,5.8,35.15,1.72 +2019-11-01 13:00:00,421.72,621.3,72.37,60.14,20.36,1.99,104.72,51.03,9.66,5.79,41.29,1.12 +2019-11-01 14:00:00,417.46,627.02,67.78,59.28,21.26,2.04,119.49,46.02,7.14,6.01,42.07,1.05 +2019-11-01 15:00:00,400.06,599.46,65.58,56.61,19.53,2.04,125.08,43.69,5.91,5.97,45.75,1.04 +2019-11-01 16:00:00,391.75,602.18,68.02,53.71,18.19,2.05,106.2,45.51,5.55,6.18,42.44,0.68 +2019-11-01 17:00:00,356.76,570.89,73.95,51.4,16.36,2.09,71.08,55.99,14.51,6.44,44.42,0.74 +2019-11-01 18:00:00,331.67,545.06,89.48,51.63,15.59,2.47,41.62,81.43,32.77,6.99,49.01,0.96 +2019-11-01 19:00:00,316.42,546.54,92.4,51.33,15.44,2.64,32.62,94.01,45.27,7.78,59.87,1.56 +2019-11-01 20:00:00,299.93,514.49,86.01,49.71,15.13,2.55,35.22,97.2,55.34,8.19,66.15,1.97 +2019-11-01 21:00:00,269.32,476.93,75.48,46.63,14.18,2.04,28.74,73.65,33.57,7.26,57.78,2.14 +2019-11-01 22:00:00,213.88,393.56,71.14,42.74,13.1,1.92,22.45,81.91,46.99,6.76,50.37,1.96 +2019-11-01 23:00:00,194.12,361.17,67.46,41.24,13.55,1.88,23.08,89.48,56.91,6.16,45.53,1.83 +2019-11-02 00:00:00,189.18,348.87,65.05,40.6,13.06,1.77,22.54,88.94,56.37,6.13,42.37,1.64 +2019-11-02 01:00:00,182.42,327.22,62.56,40.66,12.81,1.76,20.9,86.39,56.4,5.94,38.79,1.6 +2019-11-02 02:00:00,185.19,309.76,57.04,43.0,12.45,1.64,22.75,75.01,46.66,5.8,38.31,1.09 +2019-11-02 03:00:00,194.46,313.94,51.13,43.98,12.18,1.52,21.9,71.25,46.47,5.63,37.74,0.93 +2019-11-02 04:00:00,202.89,317.85,48.16,41.52,11.81,1.48,23.42,65.74,43.17,5.22,37.2,1.3 +2019-11-02 05:00:00,210.85,312.23,44.99,42.61,11.97,1.43,22.11,64.9,44.37,4.92,34.82,1.28 +2019-11-02 06:00:00,206.72,299.27,42.05,44.75,11.98,1.35,20.19,64.23,42.83,4.41,32.7,0.86 +2019-11-02 07:00:00,192.05,279.71,40.44,44.06,12.11,1.35,19.09,65.81,48.71,4.45,30.02,0.68 +2019-11-02 08:00:00,191.36,280.68,42.91,42.49,12.57,1.4,19.59,71.83,54.66,4.29,27.14,1.01 +2019-11-02 09:00:00,202.99,314.07,52.48,46.26,13.3,1.72,21.43,71.38,48.64,4.14,27.39,0.95 +2019-11-02 10:00:00,271.08,420.79,64.53,54.86,15.18,2.04,26.79,69.38,38.49,4.69,28.36,0.91 +2019-11-02 11:00:00,345.27,540.69,72.24,56.5,16.74,2.26,35.37,69.86,33.22,5.4,31.13,0.92 +2019-11-02 12:00:00,374.94,575.51,73.31,57.3,18.28,2.2,48.98,59.25,19.45,5.48,43.94,1.17 +2019-11-02 13:00:00,376.64,572.25,62.03,54.03,17.05,1.97,65.64,47.33,12.65,6.29,40.42,1.41 +2019-11-02 14:00:00,365.08,547.69,50.99,50.34,14.98,1.88,74.46,38.92,10.73,6.03,38.28,0.99 +2019-11-02 15:00:00,333.75,503.16,43.7,46.38,13.48,1.72,65.3,35.85,12.08,5.24,34.7,0.53 +2019-11-02 16:00:00,315.11,472.88,43.34,47.66,12.34,1.82,54.69,36.82,13.88,4.8,27.99,0.25 +2019-11-02 17:00:00,364.81,543.92,44.79,53.78,11.81,2.12,45.05,39.49,15.45,5.31,30.6,0.3 +2019-11-02 18:00:00,462.72,647.72,42.43,60.98,11.36,2.33,44.12,35.76,13.51,5.95,33.5,0.46 +2019-11-02 19:00:00,538.86,721.92,45.04,57.95,10.84,2.26,42.62,38.95,15.19,6.28,35.11,0.52 +2019-11-02 20:00:00,523.9,683.85,57.59,54.59,10.71,2.38,32.87,54.87,25.3,6.45,36.21,0.69 +2019-11-02 21:00:00,491.09,633.14,64.45,54.38,10.39,2.51,29.73,64.4,31.12,7.09,40.5,0.91 +2019-11-02 22:00:00,481.59,621.87,63.63,53.86,10.68,2.66,29.64,72.97,40.74,7.06,42.5,1.23 +2019-11-02 23:00:00,483.21,636.82,63.54,52.46,11.08,2.72,30.91,82.28,51.36,7.44,41.1,1.55 +2019-11-03 00:00:00,497.29,656.55,62.9,52.56,10.92,2.74,30.98,84.87,55.36,7.6,42.53,1.58 +2019-11-03 01:00:00,516.32,680.82,60.71,53.25,10.44,2.64,32.78,81.96,52.77,7.64,43.28,1.68 +2019-11-03 02:00:00,542.39,708.58,53.47,57.13,9.98,2.56,37.15,66.6,40.56,6.84,41.79,1.39 +2019-11-03 03:00:00,587.45,767.44,45.61,62.02,9.6,2.51,38.67,53.25,29.56,6.55,40.1,1.15 +2019-11-03 04:00:00,636.3,796.59,42.08,59.15,8.92,2.54,39.09,45.56,24.09,6.78,38.95,1.1 +2019-11-03 05:00:00,674.5,807.46,38.27,58.87,8.88,2.51,38.33,39.83,20.32,6.44,36.48,0.85 +2019-11-03 06:00:00,704.48,828.15,35.29,60.05,8.85,2.56,14.2,36.1,17.84,6.34,37.84,0.72 +2019-11-03 07:00:00,768.13,913.49,33.84,61.5,9.34,2.64,42.2,36.69,19.78,6.66,36.82,0.56 +2019-11-03 08:00:00,773.13,936.94,36.87,59.35,9.77,2.65,41.82,43.87,25.61,6.74,34.41,0.64 +2019-11-03 09:00:00,755.76,906.63,44.45,64.84,10.66,2.91,43.79,46.0,23.01,6.66,20.83,0.72 +2019-11-03 10:00:00,818.87,894.91,51.23,72.43,11.29,3.3,22.15,44.69,16.88,6.73,21.43,0.85 +2019-11-03 11:00:00,847.97,928.77,51.4,73.19,11.78,3.33,25.43,43.11,15.24,7.0,39.51,1.01 +2019-11-03 12:00:00,841.61,904.91,49.45,70.93,11.52,3.06,27.52,40.37,13.81,6.97,23.2,1.02 +2019-11-03 13:00:00,819.48,923.26,47.89,67.83,10.65,2.77,28.97,38.28,12.39,6.82,40.67,0.91 +2019-11-03 14:00:00,817.48,927.39,45.59,62.75,10.68,2.44,61.57,38.2,13.43,6.65,33.1,1.07 +2019-11-03 15:00:00,713.61,851.35,39.01,55.59,10.55,2.12,62.14,32.48,11.65,5.68,30.19,0.66 +2019-11-03 16:00:00,537.45,668.03,38.1,50.53,9.75,1.78,57.24,33.18,13.34,4.6,24.99,0.68 +2019-11-03 17:00:00,420.78,539.59,46.45,47.59,9.86,1.58,41.9,44.66,21.82,4.4,26.36,0.71 +2019-11-03 18:00:00,347.12,457.31,60.07,46.77,9.61,1.68,24.88,60.52,32.29,5.42,30.77,0.82 +2019-11-03 19:00:00,328.49,425.85,62.99,46.2,10.3,1.97,21.24,67.89,37.9,5.76,33.75,1.26 +2019-11-03 20:00:00,319.13,443.45,67.09,46.62,10.64,2.03,22.16,79.02,49.01,5.65,37.77,1.57 +2019-11-03 21:00:00,286.96,389.76,65.56,45.44,10.58,1.87,21.62,80.88,51.8,5.34,34.04,1.9 +2019-11-03 22:00:00,235.23,328.53,59.53,42.29,10.16,1.64,20.2,74.17,47.9,5.07,32.63,2.64 +2019-11-03 23:00:00,184.73,272.15,54.12,39.65,10.05,1.59,17.76,73.69,49.17,4.8,29.28,3.01 +2019-11-04 00:00:00,168.43,251.93,50.69,39.49,9.95,1.51,17.34,74.62,51.96,4.51,32.27,2.08 +2019-11-04 01:00:00,172.8,257.75,48.15,40.85,10.24,1.41,18.39,67.62,45.36,4.26,35.32,1.56 +2019-11-04 02:00:00,221.38,306.81,43.79,44.8,10.33,1.45,23.64,53.88,32.62,4.16,38.81,1.37 +2019-11-04 03:00:00,308.61,406.76,40.88,47.46,10.06,1.48,28.77,48.78,28.84,3.89,21.42,1.21 +2019-11-04 04:00:00,398.91,513.87,39.4,48.67,9.66,1.64,30.68,43.88,25.42,4.18,19.79,1.08 +2019-11-04 05:00:00,489.32,613.52,39.89,51.34,10.58,1.79,34.95,43.04,23.29,4.62,19.41,0.8 +2019-11-04 06:00:00,544.66,649.18,40.17,51.78,10.25,1.86,38.69,51.81,33.77,4.98,36.27,0.82 +2019-11-04 07:00:00,552.22,704.27,39.49,50.6,11.09,1.87,37.58,59.56,43.29,5.03,33.25,0.85 +2019-11-04 08:00:00,531.76,697.36,42.68,50.54,11.42,1.91,34.3,62.09,44.29,5.49,30.24,0.58 +2019-11-04 09:00:00,526.84,692.11,49.95,50.17,12.09,1.97,35.15,59.61,35.2,5.6,26.45,0.77 +2019-11-04 10:00:00,492.02,650.5,49.35,46.86,12.53,1.92,38.54,49.79,24.58,5.71,22.26,0.62 +2019-11-04 11:00:00,394.5,527.82,41.11,41.76,12.38,1.49,44.94,39.14,17.68,5.26,21.13,0.43 +2019-11-04 12:00:00,282.8,396.54,33.58,39.41,12.79,1.21,55.03,29.26,10.86,4.42,22.12,0.27 +2019-11-04 13:00:00,222.81,325.48,28.55,36.6,11.74,1.09,63.5,23.95,8.69,4.21,22.5,0.1 +2019-11-04 14:00:00,184.25,279.85,26.94,32.78,10.77,1.02,65.19,23.66,9.46,3.19,20.85,0.08 +2019-11-04 15:00:00,150.33,238.03,25.61,30.0,10.7,0.92,66.74,22.83,9.06,2.7,19.02,0.05 +2019-11-04 16:00:00,116.68,197.52,26.85,29.6,11.79,0.76,62.42,23.42,9.2,2.27,16.14,0.04 +2019-11-04 17:00:00,93.15,173.61,34.88,27.8,12.44,0.87,53.37,31.81,13.78,2.29,15.1,0.09 +2019-11-04 18:00:00,91.22,182.58,54.27,29.23,12.47,1.16,31.73,53.02,24.83,2.96,19.89,0.21 +2019-11-04 19:00:00,97.41,214.68,67.86,32.26,12.8,1.56,19.47,75.74,42.15,3.92,33.81,0.4 +2019-11-04 20:00:00,107.78,241.32,69.11,33.76,13.06,1.69,18.25,88.15,55.28,4.98,49.58,1.28 +2019-11-04 21:00:00,116.95,248.43,64.3,31.26,13.52,1.79,18.41,86.01,56.08,5.96,60.63,1.96 +2019-11-04 22:00:00,126.18,243.52,60.73,32.2,13.85,1.65,21.08,73.57,44.26,5.69,51.78,3.07 +2019-11-04 23:00:00,144.3,254.48,50.6,32.92,13.82,1.28,25.56,50.28,23.97,4.49,41.45,2.92 +2019-11-05 00:00:00,191.32,290.18,45.9,34.32,13.51,1.26,27.74,41.11,16.51,3.86,36.1,0.6 +2019-11-05 01:00:00,264.79,363.35,41.64,36.81,13.14,1.36,30.16,37.15,14.29,3.68,34.16,0.45 +2019-11-05 02:00:00,329.6,438.02,39.23,39.49,13.21,1.45,32.4,34.24,13.04,4.04,35.89,0.45 +2019-11-05 03:00:00,358.62,461.8,37.55,42.07,12.72,1.43,31.49,32.22,12.06,3.99,31.17,0.31 +2019-11-05 04:00:00,364.68,471.01,37.2,39.99,12.73,1.43,30.62,34.73,14.68,3.79,29.84,0.44 +2019-11-05 05:00:00,363.09,465.62,36.61,38.47,12.63,1.41,29.48,36.23,17.14,3.48,27.58,0.3 +2019-11-05 06:00:00,349.45,446.46,36.0,37.86,12.4,1.43,27.99,40.64,23.23,3.43,26.29,0.14 +2019-11-05 07:00:00,329.3,425.09,38.57,36.42,12.59,1.49,26.13,52.99,35.59,3.65,23.75,0.36 +2019-11-05 08:00:00,293.2,398.79,42.77,34.03,13.11,1.45,24.85,54.31,34.39,3.7,21.91,0.59 +2019-11-05 09:00:00,261.25,375.4,42.61,34.17,15.11,1.42,30.81,46.4,24.82,3.61,17.89,0.62 +2019-11-05 10:00:00,226.02,343.47,39.74,33.08,15.72,1.28,45.68,36.5,15.22,3.42,16.07,0.33 +2019-11-05 11:00:00,186.93,294.43,34.9,31.78,15.17,1.15,61.46,31.09,12.38,3.45,16.53,0.29 +2019-11-05 12:00:00,146.86,239.82,30.04,30.79,14.6,0.95,68.86,25.82,9.63,3.19,16.31,0.2 +2019-11-05 13:00:00,107.72,193.39,25.7,30.28,12.99,0.76,70.05,21.73,8.22,2.35,16.05,0.11 +2019-11-05 14:00:00,77.96,157.24,24.21,26.32,10.71,0.7,70.11,20.23,7.33,2.14,13.63,0.11 +2019-11-05 15:00:00,63.75,141.47,24.58,24.37,10.5,0.72,71.19,19.72,8.75,1.79,12.0,0.1 +2019-11-05 16:00:00,58.23,130.91,28.37,26.1,10.84,0.73,72.15,23.83,10.49,1.72,12.83,0.1 +2019-11-05 17:00:00,57.86,129.14,35.69,27.0,13.4,0.78,62.84,33.98,15.43,2.0,16.23,0.2 +2019-11-05 18:00:00,58.17,144.44,54.69,28.46,10.38,1.1,35.76,54.03,26.58,2.73,22.26,0.33 +2019-11-05 19:00:00,68.26,188.16,72.97,29.42,11.56,1.69,18.17,86.01,50.25,4.43,31.24,0.37 +2019-11-05 20:00:00,86.28,241.43,78.36,31.68,13.58,2.39,17.71,116.04,88.95,5.78,49.33,1.3 +2019-11-05 21:00:00,102.81,264.89,76.41,32.5,14.53,2.76,18.21,133.24,102.34,6.97,60.11,2.77 +2019-11-05 22:00:00,108.89,266.19,72.38,33.22,15.26,2.79,18.73,131.39,105.05,6.57,60.64,3.18 +2019-11-05 23:00:00,114.7,256.86,67.57,33.7,15.73,2.51,18.84,132.24,108.37,6.15,57.15,2.58 +2019-11-06 00:00:00,118.26,249.87,64.63,34.13,15.05,2.35,18.59,141.64,121.08,5.84,53.2,2.31 +2019-11-06 01:00:00,114.05,232.54,62.18,34.77,13.13,2.11,17.74,133.53,111.72,5.42,46.28,1.81 +2019-11-06 02:00:00,110.27,210.79,56.75,34.12,12.77,1.89,17.93,121.06,99.07,5.47,43.76,1.79 +2019-11-06 03:00:00,111.96,201.95,51.94,33.5,12.01,1.66,16.14,111.41,92.13,4.85,40.63,1.89 +2019-11-06 04:00:00,112.56,199.77,50.06,33.03,11.29,1.6,15.82,104.37,85.52,4.35,35.48,1.8 +2019-11-06 05:00:00,109.17,186.64,48.13,33.62,11.13,1.46,15.45,98.03,78.97,4.73,33.84,1.54 +2019-11-06 06:00:00,111.0,178.41,49.2,33.29,10.78,1.45,15.46,101.45,79.95,4.54,30.96,1.56 +2019-11-06 07:00:00,111.52,190.06,47.04,33.05,11.0,1.64,16.4,107.94,93.24,4.47,31.55,1.48 +2019-11-06 08:00:00,112.29,208.73,49.24,34.11,12.32,1.87,17.29,133.57,117.65,4.56,32.48,1.26 +2019-11-06 09:00:00,116.55,242.28,57.73,37.24,13.5,2.07,17.51,132.5,114.04,4.8,33.06,1.13 +2019-11-06 10:00:00,119.48,275.66,71.79,35.13,15.32,2.06,20.28,123.6,94.54,4.9,33.04,1.54 +2019-11-06 11:00:00,113.97,261.13,72.9,34.34,15.27,1.62,32.06,83.37,48.53,4.36,30.93,1.62 +2019-11-06 12:00:00,115.25,240.35,55.08,34.4,14.26,1.29,55.78,50.35,21.13,3.69,24.41,1.74 +2019-11-06 13:00:00,111.91,218.47,35.83,28.92,11.44,0.94,65.94,32.21,13.29,2.72,18.49,0.96 +2019-11-06 14:00:00,72.57,150.74,28.72,26.94,9.98,0.85,66.25,24.11,9.31,2.23,15.71,0.62 +2019-11-06 15:00:00,51.56,108.81,25.41,25.82,8.89,0.83,66.68,21.79,9.05,1.83,13.42,0.24 +2019-11-06 16:00:00,42.96,92.43,27.56,25.15,8.34,0.75,65.3,21.17,7.04,1.45,11.79,0.21 +2019-11-06 17:00:00,45.54,110.16,43.91,27.36,8.82,0.92,48.5,31.7,8.94,1.61,15.0,0.07 +2019-11-06 18:00:00,54.42,151.47,65.38,28.64,9.48,1.27,25.71,54.57,21.28,2.46,21.99,0.21 +2019-11-06 19:00:00,70.51,201.54,75.5,31.26,10.19,1.54,18.15,73.72,35.8,3.63,30.78,0.62 +2019-11-06 20:00:00,95.93,239.18,73.11,32.22,10.71,1.57,19.71,67.74,30.47,4.16,35.29,1.54 +2019-11-06 21:00:00,124.45,267.51,71.43,32.71,10.63,1.63,21.1,65.12,28.32,4.22,34.04,2.01 +2019-11-06 22:00:00,136.4,277.06,67.61,31.13,10.58,1.66,20.33,64.54,30.74,4.25,33.8,2.48 +2019-11-06 23:00:00,143.49,277.13,63.43,32.8,11.01,1.55,20.29,61.83,29.58,3.97,30.83,2.93 +2019-11-07 00:00:00,141.63,258.31,57.85,31.46,11.05,1.41,19.99,57.44,28.15,3.61,26.34,2.93 +2019-11-07 01:00:00,135.89,236.18,52.74,31.53,11.03,1.19,18.65,51.65,24.82,3.36,24.3,2.0 +2019-11-07 02:00:00,132.59,223.42,48.26,32.8,10.91,1.12,19.25,44.31,19.65,3.18,23.59,1.54 +2019-11-07 03:00:00,135.11,222.7,45.95,32.31,9.71,1.17,17.4,44.66,21.78,3.3,24.64,1.33 +2019-11-07 04:00:00,140.18,225.99,43.84,32.04,9.97,1.15,16.14,45.18,23.18,3.6,27.58,1.07 +2019-11-07 05:00:00,145.2,236.1,43.78,31.25,9.88,1.25,16.16,52.4,31.05,3.85,32.43,1.08 +2019-11-07 06:00:00,151.31,246.33,39.63,31.75,11.75,1.31,17.83,51.73,33.71,3.75,31.88,1.02 +2019-11-07 07:00:00,168.22,267.31,39.14,33.17,12.38,1.33,19.37,52.94,34.18,4.41,29.77,0.99 +2019-11-07 08:00:00,182.61,293.71,40.68,32.84,14.3,1.49,19.74,57.34,38.9,4.68,30.32,0.77 +2019-11-07 09:00:00,196.93,335.71,49.85,35.47,15.3,1.69,22.5,60.01,35.94,5.11,33.81,0.66 +2019-11-07 10:00:00,207.44,365.18,53.44,37.96,16.02,1.66,24.4,54.81,28.39,5.2,34.59,0.68 +2019-11-07 11:00:00,213.71,370.83,58.14,40.5,13.7,1.69,23.66,62.16,33.8,5.38,37.53,0.62 +2019-11-07 12:00:00,229.31,379.86,57.27,42.72,11.67,1.67,23.06,56.63,27.9,5.93,39.85,0.62 +2019-11-07 13:00:00,244.17,375.38,62.27,41.76,10.7,1.82,24.05,59.36,27.9,6.44,51.66,0.93 +2019-11-07 14:00:00,242.88,369.72,69.77,42.21,12.08,1.96,29.52,61.17,23.95,7.56,55.18,1.08 +2019-11-07 15:00:00,218.67,339.54,61.0,40.4,11.61,1.72,34.97,48.86,15.41,6.99,43.91,1.22 +2019-11-07 16:00:00,181.68,277.27,51.94,38.67,11.76,1.5,39.66,39.49,11.03,6.02,45.16,0.92 +2019-11-07 17:00:00,165.47,253.99,48.86,39.09,11.53,1.43,36.21,36.71,10.12,5.34,43.73,0.76 +2019-11-07 18:00:00,175.7,266.45,51.1,40.01,12.04,1.58,29.81,40.17,12.96,5.76,36.5,0.59 +2019-11-07 19:00:00,188.13,285.22,51.65,40.69,11.18,1.67,25.75,45.49,18.85,6.23,38.99,0.61 +2019-11-07 20:00:00,193.28,299.33,53.81,41.81,11.34,1.75,22.29,51.51,24.84,6.16,38.68,0.81 +2019-11-07 21:00:00,188.98,290.71,53.38,41.53,12.84,1.89,21.73,57.93,32.29,6.37,43.17,0.7 +2019-11-07 22:00:00,195.47,291.89,52.08,41.22,11.78,2.15,21.38,75.49,53.12,6.47,51.95,1.05 +2019-11-07 23:00:00,204.64,310.21,52.97,42.13,12.27,2.41,25.88,106.99,84.64,7.3,56.94,1.19 +2019-11-08 00:00:00,205.29,320.96,50.49,41.95,12.72,2.37,24.9,110.89,93.43,7.4,54.65,1.41 +2019-11-08 01:00:00,209.7,316.06,48.02,43.11,11.47,2.01,22.93,91.91,72.51,6.95,52.22,1.0 +2019-11-08 02:00:00,213.52,308.77,46.03,42.27,10.88,1.87,21.87,89.13,70.01,6.73,43.89,1.16 +2019-11-08 03:00:00,210.51,297.9,41.69,41.46,10.55,1.71,21.24,79.82,62.92,6.36,43.69,1.81 +2019-11-08 04:00:00,203.37,291.99,39.45,39.4,10.69,1.63,21.33,72.97,56.18,6.7,48.17,1.74 +2019-11-08 05:00:00,195.38,280.92,36.15,37.96,10.86,1.37,20.77,59.02,42.73,6.17,43.6,0.93 +2019-11-08 06:00:00,176.48,250.71,32.85,36.66,10.47,1.25,18.93,56.89,43.54,5.17,42.32,0.57 +2019-11-08 07:00:00,155.7,219.25,32.24,36.15,10.44,1.38,18.68,75.94,64.07,4.93,36.05,0.42 +2019-11-08 08:00:00,148.64,219.14,36.49,37.32,12.85,1.58,19.36,93.26,82.23,4.81,34.04,0.28 +2019-11-08 09:00:00,147.88,233.82,48.81,40.49,17.0,1.73,22.02,85.91,67.6,4.97,32.23,0.48 +2019-11-08 10:00:00,156.14,256.26,59.35,41.42,20.05,1.71,23.34,73.01,46.5,5.04,36.32,0.48 +2019-11-08 11:00:00,150.19,252.38,66.76,41.32,19.1,1.54,29.2,64.08,30.71,4.42,40.09,0.47 +2019-11-08 12:00:00,143.78,238.11,59.88,39.19,17.55,1.36,44.14,51.39,19.81,4.14,37.47,0.13 +2019-11-08 13:00:00,127.5,219.66,47.5,38.57,17.02,1.11,58.38,38.39,12.78,4.09,35.43,0.22 +2019-11-08 14:00:00,117.99,199.0,48.46,35.25,16.35,1.13,69.33,39.62,14.84,4.04,27.62,0.53 +2019-11-08 15:00:00,112.49,189.93,44.52,34.75,15.51,1.1,75.8,34.18,10.2,3.58,24.07,0.28 +2019-11-08 16:00:00,111.88,197.5,42.76,33.93,13.94,1.07,78.23,35.25,12.49,3.51,33.08,0.15 +2019-11-08 17:00:00,103.03,196.25,49.24,33.88,12.56,1.08,55.4,39.95,13.99,3.73,36.52,0.27 +2019-11-08 18:00:00,100.09,199.18,68.15,35.85,12.11,1.45,28.52,63.88,28.44,4.66,40.71,0.32 +2019-11-08 19:00:00,112.02,232.22,77.06,36.95,13.12,1.94,20.01,93.06,54.77,6.33,51.2,0.99 +2019-11-08 20:00:00,135.39,262.7,78.38,41.55,15.09,2.33,21.67,97.7,75.95,7.25,78.77,1.85 +2019-11-08 21:00:00,146.11,291.6,74.49,41.75,15.09,2.56,20.84,105.74,86.8,7.64,88.91,2.79 +2019-11-08 22:00:00,153.46,298.64,71.08,42.52,15.63,2.61,19.14,116.9,87.94,7.62,87.25,2.87 +2019-11-08 23:00:00,162.79,309.67,67.19,41.51,16.03,2.51,19.94,100.99,84.96,7.68,81.86,3.19 +2019-11-09 00:00:00,171.78,304.37,63.94,40.5,14.59,2.43,18.15,114.65,101.54,6.92,73.28,2.96 +2019-11-09 01:00:00,171.91,297.5,59.96,39.64,11.95,2.09,19.31,112.43,89.75,6.61,63.86,2.43 +2019-11-09 02:00:00,169.99,284.02,53.9,40.39,11.62,1.68,21.03,89.7,66.2,6.28,57.72,1.63 +2019-11-09 03:00:00,175.7,269.67,43.12,41.4,9.57,1.47,19.94,54.96,33.09,5.54,45.57,1.07 +2019-11-09 04:00:00,194.41,274.63,39.45,39.44,11.12,1.4,19.13,45.3,25.01,4.8,37.34,0.71 +2019-11-09 05:00:00,202.84,274.53,36.36,39.1,11.21,1.23,19.21,41.22,22.66,4.27,30.69,0.54 +2019-11-09 06:00:00,204.49,270.24,34.23,38.5,10.7,1.23,18.47,45.31,29.16,3.83,25.87,0.71 +2019-11-09 07:00:00,214.85,278.77,32.43,38.52,10.6,1.34,18.3,55.99,42.36,3.72,23.85,0.49 +2019-11-09 08:00:00,225.97,295.76,35.03,39.13,12.09,1.56,19.41,62.57,48.12,3.93,23.28,0.65 +2019-11-09 09:00:00,225.44,302.87,37.53,39.54,13.44,1.42,21.44,47.47,30.13,3.8,20.97,0.49 +2019-11-09 10:00:00,199.29,270.51,36.83,37.85,15.84,1.25,26.09,43.24,25.65,3.69,19.43,0.52 +2019-11-09 11:00:00,146.34,212.96,33.16,36.77,14.23,0.97,35.25,35.48,19.25,3.46,19.68,0.24 +2019-11-09 12:00:00,95.96,166.16,28.67,32.22,12.0,0.81,45.39,26.9,12.26,2.94,23.62,0.14 +2019-11-09 13:00:00,65.89,135.42,27.8,31.29,10.3,0.79,54.86,25.05,11.17,2.37,28.44,0.11 +2019-11-09 14:00:00,53.96,120.48,25.76,29.99,8.62,0.73,59.53,23.84,10.73,2.29,22.14,0.09 +2019-11-09 15:00:00,46.7,107.51,24.49,28.85,8.13,0.72,58.62,21.72,9.85,1.58,16.39,0.14 +2019-11-09 16:00:00,42.86,105.81,26.9,27.57,7.81,0.76,57.83,26.66,13.0,1.5,17.9,0.1 +2019-11-09 17:00:00,43.01,112.37,32.87,28.27,7.7,0.83,53.74,31.52,15.54,1.61,23.1,0.1 +2019-11-09 18:00:00,51.7,137.38,52.55,29.22,9.13,0.97,35.85,53.62,26.98,2.93,33.12,0.15 +2019-11-09 19:00:00,74.36,187.18,66.21,31.88,10.43,1.43,21.7,73.09,39.71,4.09,33.4,0.44 +2019-11-09 20:00:00,105.7,229.24,69.72,34.9,12.82,1.73,21.15,81.32,46.5,5.58,39.1,1.18 +2019-11-09 21:00:00,143.71,278.51,68.13,35.35,14.68,1.82,21.92,78.85,44.22,6.04,44.17,1.16 +2019-11-09 22:00:00,172.08,309.34,65.71,34.98,14.95,1.83,22.07,76.03,43.3,5.82,45.14,1.67 +2019-11-09 23:00:00,180.29,306.87,61.53,34.23,14.42,1.78,21.59,78.68,47.35,5.53,44.64,1.3 +2019-11-10 00:00:00,178.38,297.31,55.88,32.17,13.65,1.6,23.59,69.62,41.74,5.05,43.75,0.7 +2019-11-10 01:00:00,187.93,295.93,52.13,32.68,12.7,1.41,22.65,59.67,32.63,5.09,39.01,0.48 +2019-11-10 02:00:00,224.14,322.31,45.29,35.23,12.74,1.37,25.8,47.34,22.57,4.54,39.73,0.21 +2019-11-10 03:00:00,269.33,359.02,43.72,34.64,12.71,1.41,25.55,45.3,21.8,4.31,37.21,0.9 +2019-11-10 04:00:00,295.87,387.63,43.09,35.06,12.57,1.35,25.02,41.92,19.31,3.94,36.79,0.4 +2019-11-10 05:00:00,294.72,382.77,41.55,34.65,12.77,1.35,23.85,43.88,22.33,3.7,32.97,0.25 +2019-11-10 06:00:00,296.05,377.27,39.84,35.11,13.34,1.37,23.49,47.79,27.18,3.91,28.74,0.24 +2019-11-10 07:00:00,282.99,368.59,42.11,33.88,13.53,1.48,22.37,58.54,38.03,3.73,27.91,0.36 +2019-11-10 08:00:00,269.29,363.16,44.64,35.01,14.76,1.53,23.4,66.46,46.16,3.81,25.8,0.61 +2019-11-10 09:00:00,264.15,375.19,49.12,35.7,17.67,1.52,26.83,54.79,30.59,3.75,23.61,0.34 +2019-11-10 10:00:00,260.03,367.46,51.83,36.17,19.99,1.56,40.92,47.17,19.66,3.85,22.71,0.45 +2019-11-10 11:00:00,244.18,352.2,51.06,35.52,20.35,1.4,59.72,41.67,14.31,3.75,28.13,0.43 +2019-11-10 12:00:00,222.42,335.46,43.38,33.83,18.48,1.31,80.01,34.49,10.83,3.6,23.55,0.3 +2019-11-10 13:00:00,185.93,288.35,36.39,30.13,15.73,1.05,83.66,27.78,7.54,2.99,19.76,0.23 +2019-11-10 14:00:00,139.41,219.43,32.34,27.13,13.77,0.98,82.07,25.47,7.88,2.49,18.82,0.14 +2019-11-10 15:00:00,100.91,169.19,28.29,25.38,11.6,0.87,79.24,22.32,7.44,2.06,16.26,0.09 +2019-11-10 16:00:00,78.74,142.82,29.02,24.52,9.75,0.87,72.7,23.51,8.63,1.77,14.9,0.05 +2019-11-10 17:00:00,72.33,141.79,40.03,24.15,9.25,0.91,55.4,35.39,14.01,1.81,16.52,0.12 +2019-11-10 18:00:00,75.18,167.5,62.51,27.24,10.57,1.23,30.31,63.79,31.98,2.43,20.87,0.18 +2019-11-10 19:00:00,93.25,229.0,72.77,30.44,11.38,1.6,19.31,82.74,46.43,3.74,32.33,0.82 +2019-11-10 20:00:00,116.01,261.93,76.43,32.78,12.53,1.9,18.57,99.66,62.91,4.52,39.05,1.14 +2019-11-10 21:00:00,137.75,288.19,76.7,34.65,13.93,2.06,19.31,105.51,69.2,5.09,39.83,1.14 +2019-11-10 22:00:00,157.25,307.11,76.46,35.71,15.08,2.15,19.75,103.54,67.25,5.46,42.3,1.94 +2019-11-10 23:00:00,170.1,314.96,73.71,35.75,15.93,2.17,20.47,105.5,70.64,5.51,39.71,1.58 +2019-11-11 00:00:00,182.04,316.5,69.6,34.56,16.09,1.97,21.34,100.73,66.79,5.19,40.29,1.29 +2019-11-11 01:00:00,183.17,301.43,64.15,34.43,14.23,1.77,21.76,87.78,54.09,4.65,37.83,1.08 +2019-11-11 02:00:00,184.67,289.95,58.05,34.42,14.41,1.68,23.27,74.61,43.67,4.33,44.24,0.68 +2019-11-11 03:00:00,197.46,293.05,51.86,34.47,13.15,1.4,23.71,61.21,33.21,3.94,45.42,0.58 +2019-11-11 04:00:00,234.4,326.17,50.78,35.41,12.55,1.44,23.88,58.16,30.66,3.9,43.74,0.49 +2019-11-11 05:00:00,272.99,366.31,51.74,36.15,13.24,1.47,22.31,62.26,34.62,3.78,39.63,0.55 +2019-11-11 06:00:00,298.92,387.94,50.72,37.87,12.26,1.56,22.45,70.67,44.75,3.79,37.88,0.56 +2019-11-11 07:00:00,319.05,416.42,52.3,38.42,12.69,1.73,22.76,85.42,61.63,3.89,37.35,0.48 +2019-11-11 08:00:00,347.47,461.76,55.2,42.16,15.01,1.95,25.28,91.14,66.88,4.28,36.33,0.55 +2019-11-11 09:00:00,391.55,546.51,69.32,45.32,18.6,2.29,31.14,95.5,62.83,4.74,34.58,0.67 +2019-11-11 10:00:00,441.41,626.09,82.12,46.48,23.84,2.28,43.06,79.73,35.82,5.2,31.8,0.82 +2019-11-11 11:00:00,476.17,669.89,78.54,46.12,26.77,2.05,69.45,62.66,18.94,5.05,34.71,0.89 +2019-11-11 12:00:00,458.3,639.52,51.7,38.77,21.17,1.59,92.36,39.79,11.84,4.57,29.95,0.64 +2019-11-11 13:00:00,341.66,459.61,39.89,36.15,17.95,1.24,99.04,31.17,9.26,3.45,23.05,0.2 +2019-11-11 14:00:00,245.37,336.02,37.34,32.05,15.54,1.11,97.7,28.92,8.3,3.15,23.12,0.21 +2019-11-11 15:00:00,192.36,279.76,38.06,29.07,13.22,1.06,89.11,31.26,10.3,2.83,21.18,0.83 +2019-11-11 16:00:00,156.93,239.94,37.55,27.68,11.22,0.99,83.49,30.86,10.49,2.46,21.91,0.89 +2019-11-11 17:00:00,133.7,220.19,46.36,27.58,10.58,1.09,61.74,37.75,11.94,2.65,22.62,0.64 +2019-11-11 18:00:00,122.4,229.22,69.57,30.21,11.08,1.39,32.46,68.74,33.87,3.93,27.71,0.49 +2019-11-11 19:00:00,130.23,280.96,82.46,36.49,14.83,1.96,20.72,96.15,56.6,5.35,45.11,0.92 +2019-11-11 20:00:00,152.64,324.45,84.48,41.28,13.12,2.41,20.72,119.01,81.74,6.22,66.4,1.38 +2019-11-11 21:00:00,177.26,356.56,86.54,40.03,13.91,2.84,21.99,134.27,107.86,7.47,73.56,1.55 +2019-11-11 22:00:00,196.47,376.65,83.64,42.06,14.01,2.79,23.54,138.16,114.98,7.19,68.26,1.6 +2019-11-11 23:00:00,223.0,388.18,80.76,41.13,14.73,2.79,23.21,115.36,92.01,7.37,65.47,1.91 +2019-11-12 00:00:00,276.65,427.42,77.82,41.06,14.11,2.58,26.23,129.31,94.01,7.27,64.26,2.04 +2019-11-12 01:00:00,327.08,471.8,71.73,41.7,12.08,2.34,27.5,101.29,78.81,6.79,61.27,1.83 +2019-11-12 02:00:00,367.46,503.23,68.01,43.5,11.91,2.3,31.15,106.72,74.32,6.4,54.62,1.59 +2019-11-12 03:00:00,393.05,525.19,64.13,41.31,11.7,2.27,31.32,95.48,61.64,6.17,50.94,1.31 +2019-11-12 04:00:00,422.28,546.04,61.0,42.44,11.58,2.25,32.59,85.9,53.51,5.9,49.63,1.48 +2019-11-12 05:00:00,460.84,581.42,58.07,43.38,11.47,2.21,32.94,79.41,48.49,5.79,46.3,0.84 +2019-11-12 06:00:00,497.83,620.93,56.91,44.16,12.16,2.1,34.17,78.04,48.41,5.69,44.32,1.11 +2019-11-12 07:00:00,521.38,652.42,56.53,42.85,11.55,2.27,33.08,85.93,52.99,5.83,41.89,1.22 +2019-11-12 08:00:00,542.02,692.72,60.16,42.97,11.62,2.42,34.1,95.78,68.42,5.89,39.44,0.92 +2019-11-12 09:00:00,548.84,720.74,69.64,45.24,14.01,2.49,37.29,86.36,52.98,6.22,36.49,0.78 +2019-11-12 10:00:00,566.57,746.67,75.57,48.16,21.82,2.34,49.12,70.4,30.68,6.11,31.84,0.98 +2019-11-12 11:00:00,526.61,705.35,62.53,47.92,23.15,1.97,70.85,50.05,14.36,5.33,28.92,0.74 +2019-11-12 12:00:00,471.38,634.89,51.63,42.87,19.37,1.86,92.14,39.84,10.91,4.92,28.26,0.75 +2019-11-12 13:00:00,412.65,542.16,43.9,37.9,16.37,1.56,103.95,33.28,8.53,4.6,28.21,0.36 +2019-11-12 14:00:00,318.45,424.68,46.79,34.3,14.68,1.39,99.15,32.03,9.1,4.25,23.14,0.1 +2019-11-12 15:00:00,271.98,374.21,39.22,32.25,13.62,1.36,100.58,32.85,10.11,3.76,21.16,0.07 +2019-11-12 16:00:00,248.93,345.87,43.17,31.41,12.9,1.35,96.06,36.03,11.09,3.58,20.75,0.14 +2019-11-12 17:00:00,235.28,344.03,56.2,31.58,12.95,1.48,66.29,48.17,17.75,3.46,24.98,0.24 +2019-11-12 18:00:00,242.01,376.7,76.51,33.06,12.39,1.92,36.62,72.33,32.7,4.94,34.49,0.3 +2019-11-12 19:00:00,260.86,423.38,87.78,37.42,13.1,2.43,27.1,99.56,55.42,6.31,50.65,1.13 +2019-11-12 20:00:00,296.4,481.92,92.66,41.06,14.76,3.0,25.89,127.51,84.0,6.84,66.89,2.06 +2019-11-12 21:00:00,311.67,497.1,92.43,42.72,15.56,3.43,26.85,124.42,94.74,7.25,66.11,2.27 +2019-11-12 22:00:00,338.32,522.23,90.15,44.15,16.22,3.48,27.37,146.15,108.48,8.36,68.98,2.61 +2019-11-12 23:00:00,365.57,549.12,83.8,43.78,16.75,3.3,28.89,137.39,113.81,8.7,73.21,2.98 +2019-11-13 00:00:00,373.97,545.31,79.98,43.05,15.48,3.23,28.27,139.92,118.45,8.26,74.38,3.4 +2019-11-13 01:00:00,382.45,540.31,76.69,42.82,13.42,3.0,26.58,139.01,119.53,8.41,70.39,3.45 +2019-11-13 02:00:00,392.72,540.49,71.28,43.95,13.5,2.7,28.55,106.84,90.38,8.22,69.52,2.96 +2019-11-13 03:00:00,415.82,556.33,65.47,43.51,12.89,2.44,29.58,86.14,66.27,7.76,65.36,2.01 +2019-11-13 04:00:00,458.18,588.83,61.51,44.03,12.13,2.22,32.01,85.31,52.89,7.45,57.78,1.25 +2019-11-13 05:00:00,464.57,592.98,57.88,43.02,11.72,2.18,30.97,76.44,45.26,7.17,52.51,1.38 +2019-11-13 06:00:00,441.96,569.61,53.52,41.87,10.88,2.13,28.79,71.88,44.51,6.71,43.71,1.57 +2019-11-13 07:00:00,428.19,549.81,52.8,39.21,10.59,2.15,24.9,82.88,57.67,6.24,41.99,1.18 +2019-11-13 08:00:00,416.64,550.63,57.55,39.18,11.1,2.3,24.4,104.71,80.14,6.39,39.94,1.11 +2019-11-13 09:00:00,422.05,580.18,68.24,42.01,12.72,2.5,28.59,100.44,68.37,6.46,38.13,1.45 +2019-11-13 10:00:00,440.47,626.57,74.16,40.78,16.16,2.26,40.59,75.14,36.04,6.32,34.9,0.95 +2019-11-13 11:00:00,401.46,566.67,74.94,40.52,20.85,1.99,54.52,62.9,22.07,5.77,42.51,0.99 +2019-11-13 12:00:00,361.36,524.23,73.32,42.57,22.86,1.9,71.18,56.38,14.9,6.0,40.95,0.72 +2019-11-13 13:00:00,365.81,520.09,64.62,43.89,20.58,1.84,91.87,47.03,9.51,5.91,30.82,0.65 +2019-11-13 14:00:00,364.69,509.88,58.64,43.77,18.79,1.79,88.64,42.97,9.02,5.51,29.23,0.47 +2019-11-13 15:00:00,342.23,477.83,51.6,41.53,16.72,1.64,90.5,39.6,9.58,5.13,28.44,0.42 +2019-11-13 16:00:00,318.66,447.61,57.6,41.38,14.72,1.73,78.23,45.76,13.26,5.06,31.21,0.22 +2019-11-13 17:00:00,313.83,455.01,74.38,40.17,13.89,2.01,46.48,60.34,19.83,4.94,31.94,0.24 +2019-11-13 18:00:00,318.45,494.44,99.91,41.63,12.89,2.54,18.74,95.86,43.64,6.4,42.13,0.53 +2019-11-13 19:00:00,336.29,525.39,107.7,43.67,13.26,3.08,13.46,132.02,83.54,7.81,66.23,0.82 +2019-11-13 20:00:00,356.97,557.5,107.48,45.94,15.62,3.6,28.02,158.04,124.0,9.57,75.66,1.58 +2019-11-13 21:00:00,363.02,568.51,98.53,51.02,16.57,3.76,13.32,159.93,131.51,10.06,79.17,2.02 +2019-11-13 22:00:00,358.94,555.09,93.37,51.7,17.44,3.69,14.14,159.0,133.21,9.03,85.58,3.48 +2019-11-13 23:00:00,361.88,545.37,85.3,50.5,18.2,3.38,16.07,135.43,112.23,9.24,78.49,4.93 +2019-11-14 00:00:00,364.24,533.2,78.1,48.32,16.01,2.93,14.39,137.96,103.81,8.53,66.55,4.63 +2019-11-14 01:00:00,357.67,516.53,75.07,49.44,13.94,2.79,13.8,132.24,112.0,8.88,64.87,3.86 +2019-11-14 02:00:00,359.57,510.23,70.23,50.07,13.4,2.83,18.52,128.8,110.37,8.02,63.97,3.46 +2019-11-14 03:00:00,359.73,501.32,66.38,49.65,12.34,2.83,16.92,138.63,110.58,9.22,68.32,2.83 +2019-11-14 04:00:00,367.22,501.9,62.5,48.77,12.7,2.67,14.26,134.36,108.21,9.22,69.6,2.58 +2019-11-14 05:00:00,372.85,502.69,59.65,48.61,12.67,2.53,14.0,122.54,97.88,8.44,65.76,2.56 +2019-11-14 06:00:00,394.34,519.09,55.95,49.26,13.34,2.39,15.23,115.75,92.82,7.68,60.32,2.66 +2019-11-14 07:00:00,395.03,525.47,53.14,48.73,12.88,2.42,13.29,119.24,99.17,7.63,57.2,2.18 +2019-11-14 08:00:00,401.93,546.44,58.06,49.97,13.21,2.61,12.8,130.86,110.3,7.84,56.24,1.71 +2019-11-14 09:00:00,421.35,594.48,75.12,50.94,13.92,2.82,12.76,121.94,89.65,8.32,54.55,1.71 +2019-11-14 10:00:00,453.16,636.74,89.75,51.73,16.73,2.94,14.72,108.67,64.87,7.58,50.7,1.67 +2019-11-14 11:00:00,457.66,645.22,95.02,54.7,18.23,2.69,22.17,91.74,41.87,7.63,49.33,1.42 +2019-11-14 12:00:00,428.65,608.19,85.97,54.7,20.36,2.43,39.79,69.33,22.31,6.95,47.15,1.12 +2019-11-14 13:00:00,379.63,551.55,80.47,51.16,21.75,2.15,58.26,58.72,14.1,6.89,49.83,0.72 +2019-11-14 14:00:00,364.0,533.72,80.5,47.34,19.82,2.19,59.38,58.13,12.1,6.97,52.2,0.61 +2019-11-14 15:00:00,343.41,511.82,78.42,44.93,19.42,2.3,59.16,54.9,9.69,6.35,50.17,0.59 +2019-11-14 16:00:00,323.65,503.06,84.85,44.89,22.22,2.36,58.68,58.49,9.84,6.71,49.6,1.18 +2019-11-14 17:00:00,318.07,508.62,92.48,45.46,20.03,2.41,50.89,64.15,11.94,7.21,59.16,1.4 +2019-11-14 18:00:00,316.7,523.71,105.86,46.14,16.55,2.78,29.42,89.87,33.37,8.33,59.76,1.41 +2019-11-14 19:00:00,326.08,541.89,114.5,48.45,14.41,3.38,21.69,131.13,74.18,8.51,69.29,1.37 +2019-11-14 20:00:00,343.26,549.93,115.41,51.87,15.79,4.04,20.47,157.27,107.86,9.49,93.43,1.55 +2019-11-14 21:00:00,352.76,572.9,108.42,54.78,15.87,4.56,19.55,180.24,145.09,8.95,114.8,2.15 +2019-11-14 22:00:00,348.88,574.96,102.12,58.57,17.02,4.72,18.15,181.57,144.79,9.94,98.8,3.12 +2019-11-14 23:00:00,364.34,582.12,95.11,64.8,17.74,4.34,18.61,165.6,132.16,11.53,95.76,4.85 +2019-11-15 00:00:00,344.18,547.01,80.68,64.83,16.9,3.78,16.29,151.04,130.1,10.33,89.57,8.24 +2019-11-15 01:00:00,325.17,503.88,63.52,56.77,13.88,2.74,13.29,106.93,78.83,8.3,67.61,7.7 +2019-11-15 02:00:00,347.89,490.04,47.92,54.23,11.82,2.11,13.61,60.82,36.67,7.23,50.29,4.2 +2019-11-15 03:00:00,441.3,570.16,41.6,54.55,11.91,2.25,14.84,43.37,20.87,6.44,41.25,1.46 +2019-11-15 04:00:00,571.27,713.02,39.9,54.79,11.42,2.2,15.16,40.03,18.0,6.88,44.42,1.23 +2019-11-15 05:00:00,653.63,796.48,40.54,54.37,11.36,2.18,14.64,40.94,18.73,6.86,38.3,0.76 +2019-11-15 06:00:00,653.5,792.67,40.74,54.28,10.96,2.21,13.72,43.98,22.4,6.81,33.6,0.68 +2019-11-15 07:00:00,646.69,792.44,41.85,53.26,11.52,2.19,13.0,52.1,31.33,7.05,33.17,0.62 +2019-11-15 08:00:00,658.27,793.8,45.7,54.82,11.09,2.32,13.65,55.47,32.23,7.25,32.3,0.85 +2019-11-15 09:00:00,680.84,834.41,55.33,54.35,13.27,2.27,16.3,56.54,27.28,7.27,32.64,0.92 +2019-11-15 10:00:00,658.33,822.07,59.81,54.89,16.73,2.14,49.16,51.88,18.94,7.44,30.93,0.94 +2019-11-15 11:00:00,603.55,766.22,59.19,53.69,17.23,2.13,63.76,45.0,12.27,7.16,39.01,1.0 +2019-11-15 12:00:00,521.14,688.25,53.38,50.99,17.86,1.9,81.87,40.18,10.23,6.98,47.09,0.91 +2019-11-15 13:00:00,425.51,574.44,47.23,47.6,16.98,1.63,93.02,34.06,7.44,6.37,39.8,0.67 +2019-11-15 14:00:00,341.7,478.21,44.94,44.59,16.01,1.46,97.18,34.39,8.74,5.74,34.64,0.47 +2019-11-15 15:00:00,261.38,367.79,41.79,41.36,14.88,1.3,87.19,33.66,10.4,4.94,33.51,0.19 +2019-11-15 16:00:00,227.79,326.62,46.36,41.38,13.66,1.35,82.41,37.76,13.36,4.78,35.33,0.21 +2019-11-15 17:00:00,229.53,353.71,63.6,38.6,12.85,1.65,56.96,53.98,19.98,5.15,38.21,0.41 +2019-11-15 18:00:00,226.78,377.74,80.96,39.59,12.79,2.12,30.22,73.54,31.31,6.58,48.42,0.6 +2019-11-15 19:00:00,239.0,418.17,90.6,42.29,13.23,2.63,23.99,111.4,67.53,8.09,60.89,1.08 +2019-11-15 20:00:00,255.96,444.17,91.44,44.71,14.43,3.27,23.12,135.51,94.28,11.8,64.26,2.12 +2019-11-15 21:00:00,271.95,455.72,88.61,46.92,15.14,3.67,23.91,146.57,106.56,10.73,67.62,5.16 +2019-11-15 22:00:00,284.0,459.25,82.76,50.65,16.73,3.74,23.71,162.67,129.76,9.43,86.42,7.85 +2019-11-15 23:00:00,295.19,460.5,75.88,49.26,16.78,3.1,23.97,140.72,110.29,9.78,79.4,7.98 +2019-11-16 00:00:00,300.73,450.92,67.82,46.54,15.64,2.71,24.4,115.63,85.73,7.92,60.25,8.48 +2019-11-16 01:00:00,296.09,432.72,58.63,43.67,13.84,2.08,23.37,85.91,56.78,7.39,51.72,6.99 +2019-11-16 02:00:00,287.42,399.78,50.15,43.14,12.99,1.67,22.31,64.99,39.31,6.43,40.98,3.18 +2019-11-16 03:00:00,273.78,369.32,43.7,41.11,13.04,1.56,21.17,49.0,25.83,6.13,36.32,1.31 +2019-11-16 04:00:00,258.89,347.64,39.47,39.45,12.51,1.38,20.29,42.17,20.99,5.39,30.42,1.08 +2019-11-16 05:00:00,242.92,323.11,37.15,38.29,12.95,1.25,20.5,38.08,18.28,4.63,26.23,0.69 +2019-11-16 06:00:00,241.58,311.96,34.46,38.39,12.31,1.27,20.58,37.56,19.92,4.16,22.69,0.42 +2019-11-16 07:00:00,233.42,296.51,36.15,36.95,11.67,1.26,19.56,44.26,26.02,3.86,20.19,0.46 +2019-11-16 08:00:00,217.07,287.67,39.31,36.91,11.4,1.34,19.01,50.79,31.66,3.88,19.16,0.31 +2019-11-16 09:00:00,227.44,318.1,43.12,38.07,13.35,1.33,22.97,45.99,23.05,4.28,19.15,0.38 +2019-11-16 10:00:00,215.85,303.76,40.77,37.47,16.78,1.15,35.0,38.45,16.92,3.94,18.44,0.22 +2019-11-16 11:00:00,175.53,257.08,38.31,35.83,16.55,1.1,47.23,33.99,13.55,3.88,26.26,0.27 +2019-11-16 12:00:00,143.91,224.23,36.1,33.64,16.8,1.07,55.27,30.26,11.01,3.71,30.02,0.24 +2019-11-16 13:00:00,105.16,199.32,30.4,31.62,15.3,0.81,54.83,25.01,8.63,3.01,29.48,0.22 +2019-11-16 14:00:00,77.8,187.51,26.94,29.98,12.33,0.73,52.98,22.86,8.06,2.33,20.12,0.13 +2019-11-16 15:00:00,63.52,186.41,26.53,29.34,10.95,0.75,55.52,22.56,8.15,2.08,17.66,0.13 +2019-11-16 16:00:00,59.59,224.0,25.85,29.53,10.18,0.8,55.09,21.95,7.89,2.15,21.13,0.15 +2019-11-16 17:00:00,66.42,316.08,29.44,30.14,9.99,0.92,54.44,23.31,7.3,2.45,31.51,0.1 +2019-11-16 18:00:00,75.22,293.92,41.69,30.45,10.91,1.32,38.38,33.08,11.05,3.11,29.97,0.26 +2019-11-16 19:00:00,76.07,248.17,57.17,30.14,10.53,1.39,22.02,54.46,24.3,4.31,31.78,0.63 +2019-11-16 20:00:00,83.15,238.73,59.54,32.28,11.19,1.49,18.45,62.17,31.33,4.73,34.49,1.03 +2019-11-16 21:00:00,107.48,246.24,58.31,33.67,12.36,1.75,19.57,60.39,30.04,4.88,41.26,0.94 +2019-11-16 22:00:00,154.33,277.83,51.05,36.94,13.04,1.6,21.8,46.23,19.04,4.8,39.63,0.64 +2019-11-16 23:00:00,193.34,291.09,44.33,36.14,12.64,1.37,21.81,39.6,16.4,3.83,29.33,0.61 +2019-11-17 00:00:00,191.95,266.14,40.86,35.8,12.3,1.22,20.15,36.42,14.73,3.47,27.6,0.15 +2019-11-17 01:00:00,177.89,243.04,36.66,35.15,11.39,1.1,19.93,31.9,12.53,3.44,23.26,0.14 +2019-11-17 02:00:00,165.23,215.65,32.9,32.92,10.73,0.94,21.04,29.3,11.8,2.99,19.43,0.27 +2019-11-17 03:00:00,136.17,176.32,28.31,30.38,10.3,0.84,19.86,24.44,9.02,2.95,15.21,0.19 +2019-11-17 04:00:00,114.69,153.47,27.35,30.08,9.97,0.83,18.24,23.41,8.5,2.34,16.14,0.11 +2019-11-17 05:00:00,115.37,157.67,27.33,30.46,9.72,0.86,17.76,24.04,9.3,2.33,15.85,0.11 +2019-11-17 06:00:00,119.96,163.6,28.39,30.3,9.91,0.9,17.5,27.15,12.57,2.19,15.03,0.1 +2019-11-17 07:00:00,120.05,156.01,29.41,29.95,10.25,0.89,16.51,30.62,15.54,2.66,13.95,0.19 +2019-11-17 08:00:00,111.6,153.14,28.66,29.65,10.93,0.89,17.59,31.48,16.99,2.65,13.12,0.2 +2019-11-17 09:00:00,99.94,146.95,27.82,29.85,11.52,0.91,23.93,30.0,15.7,2.56,12.79,0.19 +2019-11-17 10:00:00,94.33,139.76,26.89,27.79,11.7,0.86,29.69,27.5,13.45,2.37,12.41,0.09 +2019-11-17 11:00:00,82.42,133.86,25.81,26.56,11.62,0.84,35.97,24.67,10.82,2.12,12.63,0.1 +2019-11-17 12:00:00,63.61,127.75,25.1,26.54,11.01,0.75,41.42,23.33,9.94,1.97,12.83,0.09 +2019-11-17 13:00:00,47.81,133.16,24.06,25.07,10.08,0.68,44.09,21.06,8.49,1.64,16.93,0.1 +2019-11-17 14:00:00,35.72,129.09,23.6,26.64,9.35,0.65,45.18,20.16,7.81,1.33,12.84,0.12 +2019-11-17 15:00:00,34.39,118.05,23.34,26.62,9.0,0.61,45.37,20.25,8.19,1.13,13.66,0.05 +2019-11-17 16:00:00,33.5,115.41,24.47,25.2,8.54,0.6,45.33,21.3,8.66,1.05,13.15,0.09 +2019-11-17 17:00:00,32.83,115.44,28.21,24.71,8.1,0.61,39.52,25.42,10.9,1.15,13.35,0.09 +2019-11-17 18:00:00,33.64,114.72,39.2,25.46,8.91,0.75,27.33,38.47,17.75,1.51,14.84,0.09 +2019-11-17 19:00:00,45.96,136.59,52.34,28.89,10.09,1.06,17.02,56.12,28.96,2.57,20.15,0.28 +2019-11-17 20:00:00,67.42,177.25,56.39,31.87,12.52,1.26,17.01,61.62,33.04,3.4,25.79,0.76 +2019-11-17 21:00:00,91.32,202.37,57.27,33.01,13.52,1.33,18.49,58.96,28.52,3.53,23.96,0.87 +2019-11-17 22:00:00,128.81,239.55,53.17,33.16,13.73,1.35,22.15,50.08,21.18,3.25,20.6,0.61 +2019-11-17 23:00:00,167.66,257.11,43.1,33.08,13.48,1.29,27.27,37.26,13.13,3.0,16.76,0.33 +2019-11-18 00:00:00,199.5,283.9,38.27,32.53,12.58,1.19,27.56,33.31,12.08,2.85,13.5,0.24 +2019-11-18 01:00:00,201.62,280.43,36.49,31.86,11.08,1.09,25.5,30.15,10.6,2.74,13.43,0.13 +2019-11-18 02:00:00,200.52,268.66,32.91,31.96,10.21,1.1,25.34,27.26,8.81,2.7,12.86,0.24 +2019-11-18 03:00:00,200.22,257.26,29.27,31.36,9.52,0.99,24.63,23.92,7.36,2.68,11.74,0.16 +2019-11-18 04:00:00,175.04,226.78,28.55,30.18,8.88,0.97,23.3,23.72,7.53,2.5,11.22,0.14 +2019-11-18 05:00:00,143.95,189.5,29.18,28.81,8.9,0.9,20.54,24.33,7.92,2.35,11.85,0.23 +2019-11-18 06:00:00,127.47,172.3,29.52,28.23,8.92,0.89,20.26,25.82,8.99,2.42,11.37,0.09 +2019-11-18 07:00:00,117.39,162.32,32.13,28.04,8.79,0.88,19.05,31.23,13.81,2.25,9.39,0.1 +2019-11-18 08:00:00,103.69,152.21,36.46,29.11,8.86,1.02,17.94,38.61,19.38,2.3,9.25,0.13 +2019-11-18 09:00:00,98.31,162.78,36.67,28.07,9.64,0.98,19.97,37.81,18.01,2.57,10.95,0.21 +2019-11-18 10:00:00,96.59,159.52,34.99,27.43,10.94,0.97,25.82,36.3,17.33,2.78,11.6,0.26 +2019-11-18 11:00:00,89.59,151.52,30.35,27.93,11.5,0.91,38.8,27.63,10.59,2.49,12.39,0.09 +2019-11-18 12:00:00,75.18,132.02,29.51,29.05,11.28,0.98,51.12,25.84,10.09,2.32,12.48,0.09 +2019-11-18 13:00:00,57.66,112.18,26.58,27.72,10.69,0.71,55.54,23.81,9.3,2.21,12.31,0.09 +2019-11-18 14:00:00,52.01,105.41,25.56,28.19,9.46,0.85,58.29,22.11,8.5,2.1,14.04,0.11 +2019-11-18 15:00:00,54.31,104.29,25.63,26.6,8.94,0.76,59.82,22.64,9.01,1.9,13.22,0.1 +2019-11-18 16:00:00,50.0,103.15,26.25,25.84,9.12,0.75,59.66,23.98,9.68,1.55,15.62,0.1 +2019-11-18 17:00:00,47.85,107.82,34.31,25.73,8.88,0.83,49.28,32.25,13.64,2.14,14.91,0.1 +2019-11-18 18:00:00,47.31,125.58,53.83,25.23,9.0,1.19,25.61,55.38,27.95,2.67,23.6,0.52 +2019-11-18 19:00:00,61.49,171.33,64.85,28.36,10.1,1.73,13.94,80.04,49.09,4.53,40.86,0.56 +2019-11-18 20:00:00,80.6,216.57,69.26,30.3,12.0,2.37,14.14,120.63,92.67,5.39,46.65,0.84 +2019-11-18 21:00:00,94.3,235.7,70.94,36.3,14.11,2.82,16.55,141.43,104.61,5.47,51.55,3.34 +2019-11-18 22:00:00,109.23,240.57,71.05,38.42,14.72,2.83,18.47,144.61,118.34,6.08,58.84,4.47 +2019-11-18 23:00:00,117.82,238.4,68.69,37.63,15.19,2.55,16.87,134.49,104.99,5.73,53.19,4.1 +2019-11-19 00:00:00,116.98,222.85,63.02,34.99,14.8,2.27,16.65,120.63,96.47,6.16,47.51,2.16 +2019-11-19 01:00:00,116.67,211.77,60.98,34.24,13.67,1.93,17.11,113.29,87.59,6.06,47.57,2.0 +2019-11-19 02:00:00,122.07,204.15,56.25,33.18,12.82,1.65,19.68,95.11,69.33,5.54,41.08,2.28 +2019-11-19 03:00:00,126.13,195.54,49.78,31.58,11.36,1.46,20.63,74.78,51.28,4.78,34.61,1.79 +2019-11-19 04:00:00,133.33,195.47,46.34,31.27,10.28,1.36,19.33,66.79,44.19,4.59,31.1,1.38 +2019-11-19 05:00:00,134.7,196.07,44.83,31.42,10.54,1.29,18.08,66.3,45.0,3.95,28.54,0.96 +2019-11-19 06:00:00,140.49,203.05,43.57,32.72,10.14,1.3,18.03,71.19,51.85,3.96,23.42,0.76 +2019-11-19 07:00:00,142.48,210.51,42.53,32.69,10.17,1.32,17.31,73.23,55.31,3.72,20.62,0.7 +2019-11-19 08:00:00,141.27,214.8,43.31,33.38,10.63,1.48,17.09,79.13,62.61,3.66,19.19,0.68 +2019-11-19 09:00:00,142.9,237.14,51.8,35.53,12.26,1.56,18.8,78.88,55.68,3.72,19.2,0.79 +2019-11-19 10:00:00,168.7,273.31,53.75,38.74,14.16,1.5,25.06,64.21,36.86,3.69,18.84,0.82 +2019-11-19 11:00:00,188.59,294.84,50.59,37.05,14.21,1.38,38.38,48.03,20.46,3.56,18.58,0.49 +2019-11-19 12:00:00,181.55,274.81,43.97,36.32,13.43,1.23,54.02,38.73,14.24,3.66,20.08,0.42 +2019-11-19 13:00:00,156.38,231.05,33.97,32.41,12.25,0.92,68.97,27.45,7.79,3.08,17.96,0.41 +2019-11-19 14:00:00,121.38,186.59,29.97,30.08,11.33,0.75,74.98,24.04,6.68,2.66,17.61,0.21 +2019-11-19 15:00:00,95.58,157.08,30.13,30.17,10.69,0.72,75.56,24.06,6.83,2.43,16.66,0.29 +2019-11-19 16:00:00,78.89,133.43,30.61,28.33,9.89,0.68,70.15,24.98,8.07,2.37,16.92,0.11 +2019-11-19 17:00:00,68.36,130.23,41.6,27.1,9.33,0.79,52.48,35.34,12.76,2.39,18.25,0.11 +2019-11-19 18:00:00,67.39,155.36,65.55,27.27,9.26,1.26,23.44,60.78,27.5,2.94,24.34,0.1 +2019-11-19 19:00:00,83.53,227.08,75.91,27.48,10.55,1.93,16.36,93.54,56.74,4.51,46.69,0.93 +2019-11-19 20:00:00,104.78,253.35,79.17,31.24,12.76,2.49,17.43,123.16,87.9,5.86,52.78,1.84 +2019-11-19 21:00:00,120.72,259.66,79.67,36.85,13.98,2.93,17.55,141.73,107.39,6.59,63.58,4.38 +2019-11-19 22:00:00,140.3,280.28,76.95,39.94,14.74,3.16,19.04,153.93,122.93,6.79,61.71,6.4 +2019-11-19 23:00:00,152.9,286.78,72.78,40.99,16.03,2.96,21.26,151.38,123.0,6.7,57.61,6.2 +2019-11-20 00:00:00,157.03,286.18,69.95,43.77,15.72,2.76,20.7,151.74,124.95,5.58,52.8,3.01 +2019-11-20 01:00:00,150.28,274.96,69.89,46.16,13.58,2.51,20.18,145.48,131.0,5.24,50.49,2.49 +2019-11-20 02:00:00,149.97,253.36,63.84,45.6,13.48,2.31,21.08,146.51,124.09,5.43,51.41,2.49 +2019-11-20 03:00:00,162.37,261.18,65.14,48.39,13.34,2.22,21.14,138.46,119.98,5.89,49.24,2.33 +2019-11-20 04:00:00,176.73,272.2,58.43,45.22,12.97,2.13,20.69,135.19,116.87,5.92,45.53,3.4 +2019-11-20 05:00:00,179.07,266.68,60.32,40.82,12.35,1.89,19.75,122.7,106.01,6.17,44.57,3.47 +2019-11-20 06:00:00,184.68,270.14,62.4,39.05,11.95,1.71,20.08,108.27,87.71,5.87,39.33,3.07 +2019-11-20 07:00:00,193.99,280.15,64.83,37.6,11.8,1.75,21.07,108.22,91.38,5.03,36.56,2.37 +2019-11-20 08:00:00,192.93,286.95,68.86,39.5,13.01,1.82,20.32,113.99,95.82,5.38,35.23,1.52 +2019-11-20 09:00:00,202.86,321.04,76.6,42.09,15.45,1.78,21.65,103.09,72.96,5.58,34.85,1.51 +2019-11-20 10:00:00,219.29,364.56,85.46,45.35,18.85,1.81,26.99,89.5,49.87,5.17,30.63,1.48 +2019-11-20 11:00:00,253.13,387.27,87.86,44.49,18.88,1.68,41.45,69.36,29.94,4.97,27.17,1.13 +2019-11-20 12:00:00,240.64,358.8,82.69,47.88,16.47,1.47,63.88,56.66,17.6,4.66,24.62,0.83 +2019-11-20 13:00:00,194.7,297.83,60.71,35.55,14.16,1.09,83.47,40.15,11.9,4.62,25.83,0.51 +2019-11-20 14:00:00,140.51,219.46,48.13,31.43,12.26,0.88,97.86,29.98,8.74,3.2,16.31,0.17 +2019-11-20 15:00:00,111.35,184.17,49.34,30.69,11.99,0.86,96.45,28.94,7.94,3.22,17.85,0.13 +2019-11-20 16:00:00,113.27,190.54,54.35,29.77,11.07,0.9,95.39,32.82,10.04,3.28,22.72,0.12 +2019-11-20 17:00:00,111.03,198.68,71.09,33.18,11.04,1.13,64.11,46.75,15.96,3.91,25.05,1.0 +2019-11-20 18:00:00,110.74,239.66,94.03,32.36,11.19,1.68,30.47,68.16,23.55,4.59,32.88,0.28 +2019-11-20 19:00:00,132.59,293.59,105.76,32.83,12.63,2.9,21.9,119.39,75.26,5.7,48.09,0.73 +2019-11-20 20:00:00,171.44,342.65,110.45,35.95,15.27,3.81,21.64,153.58,117.2,7.47,71.23,2.02 +2019-11-20 21:00:00,198.17,388.02,118.37,41.46,18.04,4.39,24.8,163.81,140.23,7.75,96.34,4.56 +2019-11-20 22:00:00,223.6,422.95,118.28,45.35,22.79,4.62,26.65,189.61,158.65,10.45,103.07,5.79 +2019-11-20 23:00:00,234.27,430.29,116.0,50.15,25.48,4.95,33.95,199.92,173.41,10.59,120.34,8.25 +2019-11-21 00:00:00,242.44,434.19,111.37,52.89,25.22,4.87,34.63,203.02,178.06,12.17,122.74,14.12 +2019-11-21 01:00:00,251.72,427.08,93.2,51.53,20.83,4.35,33.62,196.33,172.35,11.84,105.95,15.46 +2019-11-21 02:00:00,248.97,400.24,89.93,53.01,19.06,3.96,38.05,187.37,164.35,12.15,101.21,13.94 +2019-11-21 03:00:00,255.1,389.76,93.39,52.09,18.88,3.53,38.06,173.5,153.88,11.42,88.02,16.07 +2019-11-21 04:00:00,252.23,373.35,89.05,49.97,17.44,3.3,36.44,165.94,145.95,11.31,79.72,17.54 +2019-11-21 05:00:00,250.47,360.27,73.54,48.62,16.76,3.15,35.22,168.87,160.57,11.11,74.73,11.3 +2019-11-21 06:00:00,252.21,362.24,80.94,42.67,17.48,3.3,37.23,161.45,145.98,10.81,77.51,5.94 +2019-11-21 07:00:00,261.29,373.76,77.48,42.27,18.03,3.42,35.58,169.33,155.44,10.21,76.6,3.71 +2019-11-21 08:00:00,268.39,397.1,82.95,45.07,19.79,3.55,34.57,185.31,150.22,9.87,74.9,2.95 +2019-11-21 09:00:00,284.43,449.64,105.42,45.93,23.35,3.49,50.62,200.67,175.96,9.67,70.42,2.8 +2019-11-21 10:00:00,282.38,454.58,119.7,50.03,34.22,3.18,55.3,166.21,122.46,10.08,64.34,3.28 +2019-11-21 11:00:00,267.9,440.9,119.56,48.24,32.56,2.49,62.36,120.71,63.48,8.55,55.61,3.09 +2019-11-21 12:00:00,225.74,368.32,108.47,44.69,25.51,2.04,66.69,87.8,34.38,7.16,47.15,2.67 +2019-11-21 13:00:00,196.18,327.39,84.27,42.37,21.82,1.55,92.3,57.75,18.52,6.35,45.31,2.04 +2019-11-21 14:00:00,165.6,273.42,59.22,38.07,18.42,1.38,100.0,44.8,15.39,5.26,42.16,1.17 +2019-11-21 15:00:00,141.84,238.78,59.71,37.47,16.35,1.37,99.85,44.92,12.39,5.05,40.06,0.84 +2019-11-21 16:00:00,134.17,241.32,61.13,35.75,14.92,1.32,89.43,44.25,11.98,4.72,48.44,0.84 +2019-11-21 17:00:00,127.69,252.35,66.72,34.48,13.7,1.29,59.23,46.41,11.33,4.78,39.23,0.63 +2019-11-21 18:00:00,129.59,280.38,94.08,34.94,12.92,1.84,33.69,83.49,27.67,5.65,48.38,0.75 +2019-11-21 19:00:00,148.34,303.24,105.33,38.22,14.75,2.75,26.28,114.44,66.07,6.53,58.53,1.56 +2019-11-21 20:00:00,177.22,342.91,105.44,41.27,16.15,3.32,25.93,133.44,94.58,7.81,74.14,3.33 +2019-11-21 21:00:00,199.51,378.44,109.33,43.7,16.74,3.97,25.23,158.19,130.95,9.01,95.88,4.69 +2019-11-21 22:00:00,222.94,432.79,108.24,47.95,20.06,4.42,25.18,174.99,153.8,10.33,98.14,5.97 +2019-11-21 23:00:00,238.34,427.93,101.04,48.3,21.41,4.19,26.77,172.44,150.09,10.33,95.69,6.28 +2019-11-22 00:00:00,245.35,408.66,95.0,47.61,20.43,3.91,25.3,161.05,147.95,9.53,90.99,6.11 +2019-11-22 01:00:00,246.51,393.52,88.16,45.57,17.14,3.13,23.51,145.62,126.07,9.26,77.42,5.1 +2019-11-22 02:00:00,238.86,368.04,83.79,44.24,16.29,3.02,22.56,148.4,120.05,8.6,73.65,3.76 +2019-11-22 03:00:00,232.86,347.82,76.87,43.07,15.28,2.9,21.96,151.59,136.43,8.44,72.53,2.95 +2019-11-22 04:00:00,231.13,339.47,71.07,42.3,13.65,2.81,21.31,157.79,133.57,8.4,68.42,2.44 +2019-11-22 05:00:00,226.08,326.64,69.68,42.78,14.02,2.84,20.44,160.74,136.03,8.31,65.12,1.71 +2019-11-22 06:00:00,218.88,319.81,65.89,41.8,13.53,2.78,19.54,158.37,138.52,8.08,65.94,1.9 +2019-11-22 07:00:00,220.19,318.68,68.59,41.57,14.17,2.81,20.02,149.35,143.96,8.45,67.86,2.47 +2019-11-22 08:00:00,229.1,339.0,73.77,44.81,14.11,3.08,20.99,168.45,152.19,8.31,66.3,2.71 +2019-11-22 09:00:00,250.62,385.62,90.77,50.65,15.84,3.08,23.88,165.63,132.66,8.61,69.16,3.6 +2019-11-22 10:00:00,256.71,411.84,104.0,51.86,17.74,2.46,32.23,127.89,80.25,8.03,61.05,3.86 +2019-11-22 11:00:00,228.47,369.43,90.63,47.12,19.03,1.75,49.62,87.17,39.87,6.44,46.08,2.47 +2019-11-22 12:00:00,192.07,316.48,73.9,45.55,18.33,1.43,71.02,63.92,22.98,5.77,33.65,1.53 +2019-11-22 13:00:00,175.98,300.65,59.18,44.1,18.72,1.28,94.78,48.82,15.31,5.27,32.55,1.09 +2019-11-22 14:00:00,165.85,279.05,48.76,38.73,20.12,1.1,110.15,39.03,11.46,4.8,31.9,0.89 +2019-11-22 15:00:00,144.4,246.47,42.93,35.21,19.86,0.99,104.3,32.28,7.65,3.99,29.43,0.44 +2019-11-22 16:00:00,131.0,231.25,40.21,34.57,17.91,0.95,95.77,29.16,5.73,3.69,27.79,0.36 +2019-11-22 17:00:00,131.51,236.7,49.05,34.24,14.26,1.16,67.44,39.49,12.68,3.67,34.57,0.6 +2019-11-22 18:00:00,136.17,268.24,73.2,35.53,12.54,1.66,35.71,66.1,25.62,5.14,47.41,2.0 +2019-11-22 19:00:00,149.79,322.59,84.45,37.45,12.5,2.33,23.44,97.76,53.16,6.09,53.19,1.72 +2019-11-22 20:00:00,167.7,338.8,88.68,39.96,13.28,2.83,21.04,125.36,81.49,6.88,53.39,3.09 +2019-11-22 21:00:00,188.77,361.77,93.01,41.97,14.1,3.03,24.22,141.1,98.08,7.32,60.7,4.38 +2019-11-22 22:00:00,206.12,372.95,86.29,40.83,15.69,3.15,24.46,132.94,93.04,7.53,63.55,5.29 +2019-11-22 23:00:00,213.88,378.89,83.96,40.56,15.84,3.05,23.37,137.84,101.1,8.31,67.6,4.92 +2019-11-23 00:00:00,209.57,350.9,78.08,41.23,14.74,2.6,22.27,132.96,88.38,7.67,63.46,3.81 +2019-11-23 01:00:00,204.81,327.51,69.11,37.27,13.92,1.9,22.82,97.41,66.67,6.32,52.68,3.05 +2019-11-23 02:00:00,179.64,276.78,57.87,36.07,13.79,1.42,23.38,72.9,41.7,5.31,42.07,1.42 +2019-11-23 03:00:00,153.76,231.54,55.84,33.39,13.26,1.27,20.7,64.9,35.17,4.78,35.44,0.79 +2019-11-23 04:00:00,140.86,211.91,53.91,32.97,11.11,1.17,16.87,59.67,31.6,4.62,34.15,0.73 +2019-11-23 05:00:00,138.23,204.4,49.97,33.23,9.67,1.08,16.62,52.41,26.31,4.32,29.11,0.68 +2019-11-23 06:00:00,145.45,207.78,45.0,34.02,10.45,1.02,17.11,44.67,20.64,3.97,25.25,0.67 +2019-11-23 07:00:00,149.85,211.46,42.69,33.02,10.04,1.05,16.11,46.28,24.39,3.49,21.37,0.49 +2019-11-23 08:00:00,147.11,213.03,42.76,33.39,9.97,1.15,15.9,53.57,32.43,3.24,18.89,0.33 +2019-11-23 09:00:00,150.41,232.47,42.65,34.41,10.6,1.22,18.32,51.33,30.43,3.27,19.03,0.2 +2019-11-23 10:00:00,151.05,238.35,41.46,33.68,11.6,1.18,22.49,45.83,24.98,3.22,17.73,0.27 +2019-11-23 11:00:00,138.99,226.03,40.68,34.06,12.17,1.1,27.86,39.99,19.3,3.32,19.63,0.23 +2019-11-23 12:00:00,128.4,221.04,40.38,34.68,12.4,1.01,35.51,35.49,14.65,3.55,22.33,0.51 +2019-11-23 13:00:00,120.73,215.54,41.12,33.83,11.85,0.94,41.96,34.34,13.39,3.4,25.47,0.46 +2019-11-23 14:00:00,100.43,188.88,40.64,32.26,11.34,0.88,47.74,34.55,11.39,3.76,25.98,0.29 +2019-11-23 15:00:00,89.53,171.74,46.35,33.3,10.04,0.83,49.13,35.79,13.46,3.52,27.15,0.14 +2019-11-23 16:00:00,82.62,165.0,41.57,32.58,9.27,0.78,47.67,37.92,15.36,3.24,29.02,0.03 +2019-11-23 17:00:00,76.21,163.56,49.06,32.32,9.17,0.96,37.43,47.58,21.19,3.09,25.23,0.08 +2019-11-23 18:00:00,77.88,188.43,63.09,32.62,10.74,1.34,22.32,67.81,35.22,3.94,34.49,0.22 +2019-11-23 19:00:00,90.27,222.86,69.25,33.99,11.82,1.75,17.29,86.45,52.78,5.61,48.74,0.8 +2019-11-23 20:00:00,104.12,238.79,69.2,36.79,13.27,1.89,17.63,94.27,62.09,6.85,58.16,1.36 +2019-11-23 21:00:00,115.66,235.87,65.51,37.81,13.19,1.74,18.78,83.57,51.55,6.2,44.89,2.83 +2019-11-23 22:00:00,117.61,222.07,61.86,36.48,12.68,1.59,18.4,74.68,43.51,5.66,49.15,3.04 +2019-11-23 23:00:00,116.67,213.49,56.67,36.93,12.32,1.33,19.73,62.04,31.89,4.72,42.17,1.61 +2019-11-24 00:00:00,118.13,201.79,51.97,38.49,12.02,1.15,19.95,51.44,25.61,3.65,34.65,0.77 +2019-11-24 01:00:00,129.79,197.74,46.1,40.01,11.58,1.0,20.9,43.67,18.37,3.64,24.89,0.53 +2019-11-24 02:00:00,131.39,192.06,40.98,40.11,10.7,0.92,23.72,39.63,16.45,3.01,20.04,0.32 +2019-11-24 03:00:00,124.39,176.72,37.43,32.25,10.63,0.86,24.53,36.37,15.57,2.77,18.06,0.19 +2019-11-24 04:00:00,113.13,161.25,35.36,31.69,9.89,0.83,22.39,33.03,13.44,2.56,16.8,0.19 +2019-11-24 05:00:00,110.41,155.21,34.47,32.19,9.41,0.82,22.26,31.36,12.14,2.54,16.17,0.17 +2019-11-24 06:00:00,112.44,157.71,37.37,34.46,9.71,0.83,20.5,34.64,14.29,2.54,15.89,0.15 +2019-11-24 07:00:00,117.8,164.95,39.3,34.39,9.93,0.88,18.85,39.37,18.58,2.54,15.74,0.08 +2019-11-24 08:00:00,126.6,178.06,40.82,33.48,10.81,0.98,17.91,43.13,21.79,2.77,16.09,0.29 +2019-11-24 09:00:00,136.47,198.18,40.31,33.66,12.08,1.0,23.49,40.31,18.87,2.92,15.88,0.15 +2019-11-24 10:00:00,139.52,200.72,37.36,32.92,13.69,0.96,34.15,34.01,13.59,2.9,15.13,0.13 +2019-11-24 11:00:00,125.74,186.43,34.92,32.23,14.51,0.92,45.43,30.69,11.59,2.65,14.52,0.22 +2019-11-24 12:00:00,104.98,168.46,33.41,33.42,13.44,0.83,54.12,29.49,11.3,2.35,14.92,0.16 +2019-11-24 13:00:00,87.44,153.38,32.58,33.25,11.89,0.78,58.39,28.71,10.63,2.2,15.27,0.12 +2019-11-24 14:00:00,70.73,131.97,28.77,31.71,10.41,0.72,57.11,25.96,10.2,1.9,14.26,0.06 +2019-11-24 15:00:00,56.71,112.46,31.12,30.23,10.04,0.74,52.03,29.37,12.71,1.62,13.93,0.12 +2019-11-24 16:00:00,52.17,110.47,36.26,29.55,9.83,0.78,44.16,35.29,15.71,1.82,15.18,0.11 +2019-11-24 17:00:00,54.21,128.17,50.8,29.31,9.95,0.93,29.68,48.36,21.87,2.42,19.72,0.16 +2019-11-24 18:00:00,67.76,171.89,59.91,32.02,10.71,1.2,22.82,62.82,33.12,3.85,27.14,0.44 +2019-11-24 19:00:00,87.58,206.27,64.27,35.78,11.51,1.38,20.77,67.99,35.39,4.11,30.93,1.59 +2019-11-24 20:00:00,112.13,225.56,62.72,39.58,11.86,1.48,19.81,66.06,33.61,4.35,32.27,2.34 +2019-11-24 21:00:00,129.58,233.18,58.94,41.03,12.11,1.51,20.13,61.61,31.12,4.24,30.35,1.28 +2019-11-24 22:00:00,135.88,232.11,55.72,35.83,12.59,1.49,18.97,58.64,30.11,4.39,30.31,1.27 +2019-11-24 23:00:00,143.55,232.4,53.31,36.28,13.08,1.37,18.28,56.99,29.74,3.87,28.95,0.85 +2019-11-25 00:00:00,142.37,222.49,52.63,35.17,12.65,1.28,17.21,56.4,29.39,3.9,26.31,1.09 +2019-11-25 01:00:00,144.41,219.44,51.56,35.89,12.86,1.21,18.2,54.6,26.94,3.5,24.49,0.85 +2019-11-25 02:00:00,144.09,210.83,45.24,36.54,11.9,1.05,21.15,48.74,23.94,3.15,20.96,0.55 +2019-11-25 03:00:00,135.05,197.91,41.84,34.48,11.11,0.95,21.02,46.79,23.84,2.83,19.97,0.24 +2019-11-25 04:00:00,127.88,183.86,41.96,33.76,10.64,0.94,18.81,50.43,27.66,2.99,19.75,0.24 +2019-11-25 05:00:00,122.2,175.84,41.34,32.7,9.75,0.97,16.45,55.11,34.14,2.98,19.35,0.35 +2019-11-25 06:00:00,119.2,175.15,40.83,33.81,9.36,1.0,15.59,62.83,44.26,2.85,19.41,0.29 +2019-11-25 07:00:00,124.81,183.17,42.74,33.65,9.81,1.15,15.5,71.22,52.15,2.87,19.07,0.29 +2019-11-25 08:00:00,136.78,206.04,47.42,36.35,10.92,1.38,17.16,89.0,69.75,3.22,19.39,0.49 +2019-11-25 09:00:00,162.8,256.65,54.34,40.38,13.86,1.47,19.84,86.07,63.01,3.83,20.1,0.82 +2019-11-25 10:00:00,174.25,283.84,57.85,40.7,19.47,1.34,25.7,68.97,40.24,4.0,21.75,0.69 +2019-11-25 11:00:00,150.62,256.94,55.81,35.79,19.57,1.17,35.59,52.55,22.42,3.62,25.38,0.53 +2019-11-25 12:00:00,123.4,218.32,52.98,33.19,19.35,1.02,49.5,47.55,19.14,3.57,31.64,0.19 +2019-11-25 13:00:00,100.58,191.73,42.45,32.47,16.71,0.84,62.75,34.07,10.37,3.06,32.47,0.22 +2019-11-25 14:00:00,80.31,153.68,37.23,32.6,14.45,0.77,71.07,30.06,9.77,2.48,24.54,0.12 +2019-11-25 15:00:00,73.44,145.11,37.0,33.13,13.58,0.84,72.09,29.57,9.3,2.54,25.1,0.1 +2019-11-25 16:00:00,72.05,142.5,35.74,33.0,12.84,0.78,73.79,26.74,6.94,2.67,27.96,0.13 +2019-11-25 17:00:00,73.59,153.38,41.42,30.94,11.64,0.86,54.13,31.15,7.88,2.74,34.72,0.13 +2019-11-25 18:00:00,78.12,184.97,62.31,31.82,11.08,1.38,27.8,58.38,25.18,3.81,41.68,0.29 +2019-11-25 19:00:00,90.94,227.82,77.66,33.57,12.04,2.16,19.54,106.74,69.13,5.54,31.15,0.4 +2019-11-25 20:00:00,117.65,263.07,81.31,37.59,13.63,2.63,18.76,127.86,91.02,7.53,49.25,1.53 +2019-11-25 21:00:00,140.45,285.97,81.54,41.85,15.65,3.23,20.61,136.85,113.28,8.53,58.86,2.48 +2019-11-25 22:00:00,150.45,293.32,81.37,42.86,16.37,3.23,25.28,141.35,118.62,8.85,77.67,3.01 +2019-11-25 23:00:00,151.39,295.93,74.39,43.72,17.02,3.09,27.18,145.98,126.96,8.7,64.12,3.87 +2019-11-26 00:00:00,146.14,276.31,65.12,41.01,19.14,2.61,26.72,133.79,108.45,8.83,55.28,3.75 +2019-11-26 01:00:00,137.57,244.26,59.94,38.7,15.71,2.1,29.07,120.0,98.6,7.79,50.07,2.64 +2019-11-26 02:00:00,130.53,223.48,55.2,38.37,15.26,1.72,25.2,96.05,86.81,7.04,44.63,1.57 +2019-11-26 03:00:00,121.9,203.85,50.38,34.55,15.84,1.53,28.84,96.67,75.9,6.79,42.66,1.03 +2019-11-26 04:00:00,115.62,185.8,49.14,34.16,15.71,1.48,29.97,94.3,73.22,6.33,40.32,0.76 +2019-11-26 05:00:00,118.51,188.1,48.81,34.57,15.47,1.43,29.02,94.29,72.53,5.95,36.97,0.34 +2019-11-26 06:00:00,116.16,188.06,46.08,34.48,16.95,1.45,23.14,92.21,73.67,6.01,35.08,0.26 +2019-11-26 07:00:00,119.43,197.54,46.22,34.83,20.48,1.6,28.79,106.63,93.48,6.09,36.77,0.42 +2019-11-26 08:00:00,128.1,224.22,50.52,36.0,17.18,1.91,29.97,127.14,113.78,6.3,38.01,0.36 +2019-11-26 09:00:00,151.62,276.31,60.65,40.03,22.53,2.05,34.31,130.35,112.78,6.52,39.8,0.36 +2019-11-26 10:00:00,159.63,318.28,65.63,40.92,36.45,1.69,35.47,93.91,66.16,6.0,37.29,0.75 +2019-11-26 11:00:00,153.51,307.31,64.77,39.23,33.6,1.47,41.5,71.75,39.43,5.16,38.18,0.75 +2019-11-26 12:00:00,136.69,273.85,62.71,39.06,27.69,1.36,56.03,57.45,24.26,4.64,36.64,0.47 +2019-11-26 13:00:00,126.86,262.62,58.88,37.94,21.46,1.2,67.32,52.37,20.29,4.06,25.94,0.42 +2019-11-26 14:00:00,111.17,235.52,57.46,39.99,18.41,1.11,72.13,45.74,13.57,3.62,22.97,0.57 +2019-11-26 15:00:00,108.53,225.85,57.21,40.2,18.01,1.21,84.54,41.67,9.21,3.77,23.78,0.54 +2019-11-26 16:00:00,114.78,245.94,57.14,39.31,15.59,1.09,74.7,42.18,9.81,3.63,34.15,0.38 +2019-11-26 17:00:00,111.28,250.07,69.1,38.67,13.6,1.32,56.28,50.42,11.19,4.43,50.07,0.4 +2019-11-26 18:00:00,111.0,270.92,69.32,37.78,13.66,1.45,38.15,56.16,16.46,5.34,58.06,0.65 +2019-11-26 19:00:00,109.46,280.83,54.7,36.94,12.15,1.18,29.83,47.21,15.88,5.36,54.88,0.99 +2019-11-26 20:00:00,83.87,234.52,36.21,33.98,10.54,0.79,30.66,29.79,9.53,3.7,41.53,0.55 +2019-11-26 21:00:00,50.29,135.01,36.29,33.49,9.63,0.7,24.38,30.87,10.94,2.8,36.17,0.24 +2019-11-26 22:00:00,41.94,90.67,35.78,32.99,9.16,0.71,22.33,32.0,12.54,2.38,22.36,0.18 +2019-11-26 23:00:00,37.82,79.38,34.58,31.86,9.42,0.62,22.69,30.4,11.57,2.35,20.34,0.1 +2019-11-27 00:00:00,34.54,69.93,34.34,31.35,9.27,0.61,22.62,29.48,11.14,2.24,25.51,0.11 +2019-11-27 01:00:00,30.55,64.78,33.82,30.84,8.61,0.62,19.25,28.82,11.08,2.09,17.17,0.08 +2019-11-27 02:00:00,26.03,54.11,30.29,30.4,8.5,0.63,22.82,26.28,10.16,1.68,12.26,0.08 +2019-11-27 03:00:00,24.94,47.88,28.92,28.65,9.71,0.46,20.77,26.34,11.07,1.55,16.02,0.11 +2019-11-27 04:00:00,24.22,45.18,29.33,28.74,8.89,0.6,20.01,26.63,11.21,1.54,17.1,0.08 +2019-11-27 05:00:00,23.25,42.91,32.15,29.05,8.02,0.59,16.17,32.1,15.14,1.29,11.23,0.07 +2019-11-27 06:00:00,24.51,47.38,33.92,29.26,7.92,0.53,15.65,37.52,20.24,1.44,13.9,0.07 +2019-11-27 07:00:00,30.65,58.28,35.34,29.82,9.16,0.72,14.61,46.15,30.44,1.83,14.93,0.04 +2019-11-27 08:00:00,36.8,81.19,38.52,30.57,10.2,0.98,21.65,70.75,58.15,2.32,16.23,0.23 +2019-11-27 09:00:00,50.08,126.18,43.49,32.58,12.54,1.07,21.61,75.27,60.67,2.65,20.13,0.18 +2019-11-27 10:00:00,58.93,146.9,49.32,35.14,14.73,1.06,24.22,66.89,47.51,2.74,20.89,0.12 +2019-11-27 11:00:00,67.85,171.65,54.94,35.86,16.05,1.01,27.16,56.68,30.66,2.96,22.71,0.13 +2019-11-27 12:00:00,75.66,181.34,59.93,36.86,16.32,1.06,37.48,51.6,22.63,3.15,26.4,0.1 +2019-11-27 13:00:00,85.47,196.83,51.33,36.18,15.2,0.96,54.06,39.73,12.95,3.38,32.11,0.18 +2019-11-27 14:00:00,91.1,198.85,47.06,36.76,14.5,0.94,66.7,35.6,10.45,2.97,29.55,0.23 +2019-11-27 15:00:00,94.72,204.33,47.58,37.69,13.12,1.01,62.49,35.29,10.09,3.1,26.13,0.16 +2019-11-27 16:00:00,98.87,209.72,59.39,39.34,10.4,1.21,37.32,44.02,11.84,3.79,38.8,0.17 +2019-11-27 17:00:00,109.35,213.12,53.24,40.19,9.7,1.11,32.7,40.29,10.02,4.3,57.31,0.75 +2019-11-27 18:00:00,109.59,179.83,46.62,38.92,8.83,1.09,29.05,35.38,9.45,4.19,60.05,0.97 +2019-11-27 19:00:00,109.19,170.74,49.8,38.93,9.0,1.2,29.41,39.73,12.27,4.88,49.21,0.82 +2019-11-27 20:00:00,117.37,175.68,53.85,39.34,10.07,1.31,26.69,43.27,14.02,5.02,51.41,0.89 +2019-11-27 21:00:00,117.51,174.98,48.48,39.21,9.29,1.15,29.45,41.58,15.43,4.58,45.55,0.89 +2019-11-27 22:00:00,92.42,138.34,35.39,35.18,8.51,0.79,35.41,29.0,9.86,3.38,33.7,0.42 +2019-11-27 23:00:00,43.16,74.18,33.52,32.76,8.41,0.6,37.41,26.52,8.41,2.23,21.22,0.34 +2019-11-28 00:00:00,24.82,47.06,35.38,31.28,7.79,0.59,29.84,28.83,9.51,1.99,18.9,0.15 +2019-11-28 01:00:00,22.76,47.46,35.63,30.39,10.19,0.51,29.9,28.71,9.24,1.85,18.81,0.1 +2019-11-28 02:00:00,21.27,47.36,31.62,29.56,12.14,0.54,30.86,25.78,8.69,1.65,19.12,0.1 +2019-11-28 03:00:00,19.34,40.27,27.37,27.15,9.99,0.44,32.34,23.47,9.07,1.29,17.75,0.19 +2019-11-28 04:00:00,17.3,34.74,28.34,26.98,8.97,0.44,28.48,23.33,8.55,1.15,17.79,0.14 +2019-11-28 05:00:00,17.05,33.97,26.83,27.38,8.23,0.45,27.05,22.64,8.8,1.09,15.6,0.1 +2019-11-28 06:00:00,18.65,35.87,27.85,27.8,8.84,0.5,28.47,23.73,10.01,1.09,13.03,0.2 +2019-11-28 07:00:00,21.87,41.32,34.74,28.68,10.0,0.55,21.29,28.26,12.32,0.93,14.11,0.18 +2019-11-28 08:00:00,25.84,48.96,31.22,29.64,8.2,0.64,21.98,31.11,15.25,1.06,17.74,0.16 +2019-11-28 09:00:00,28.56,56.84,27.78,29.05,7.54,0.6,24.62,26.09,12.14,1.28,14.92,0.2 +2019-11-28 10:00:00,25.19,45.21,29.51,27.97,8.5,0.65,28.06,27.12,11.92,1.3,15.54,0.21 +2019-11-28 11:00:00,30.2,54.64,31.38,29.35,8.44,0.72,30.42,27.69,11.21,1.89,23.64,0.22 +2019-11-28 12:00:00,41.53,72.59,29.37,30.65,9.23,0.7,33.32,26.68,11.79,2.77,34.75,0.16 +2019-11-28 13:00:00,45.27,82.26,25.94,31.55,9.21,0.66,38.1,21.86,8.4,2.51,28.31,0.16 +2019-11-28 14:00:00,44.17,80.88,24.79,33.35,8.69,0.66,39.13,20.89,7.92,2.77,24.23,0.15 +2019-11-28 15:00:00,40.9,77.36,25.25,33.42,8.34,0.66,38.57,21.13,7.9,2.05,23.33,0.28 +2019-11-28 16:00:00,38.86,75.31,25.75,33.04,8.31,0.65,38.31,21.17,7.58,2.02,25.41,0.08 +2019-11-28 17:00:00,36.98,71.89,28.15,31.45,9.12,0.66,35.04,21.89,7.59,1.91,20.43,0.13 +2019-11-28 18:00:00,35.42,67.63,33.67,30.65,8.78,0.74,30.1,26.58,9.51,2.35,21.23,0.18 +2019-11-28 19:00:00,36.67,68.3,38.14,30.84,8.95,0.8,25.26,29.92,10.45,2.43,19.3,0.16 +2019-11-28 20:00:00,38.14,66.93,40.18,31.57,9.97,0.82,24.3,31.63,11.22,2.84,27.73,0.21 +2019-11-28 21:00:00,38.0,71.16,42.47,31.16,9.38,0.81,21.87,33.37,11.9,2.52,18.25,0.18 +2019-11-28 22:00:00,37.64,68.27,45.62,31.29,8.59,0.86,18.35,36.99,13.87,2.1,14.85,0.2 +2019-11-28 23:00:00,38.3,70.19,48.17,31.7,8.42,0.93,13.7,42.45,18.9,2.23,21.64,0.47 +2019-11-29 00:00:00,40.29,75.84,48.47,31.23,8.72,0.96,13.22,51.52,29.03,2.19,21.8,0.31 +2019-11-29 01:00:00,42.19,80.86,44.43,30.94,8.65,0.89,15.64,53.03,32.93,2.27,24.07,0.19 +2019-11-29 02:00:00,46.49,80.93,39.59,32.6,8.73,0.82,15.2,45.34,26.74,2.4,25.67,0.16 +2019-11-29 03:00:00,46.21,73.49,35.94,29.16,9.15,0.65,16.53,35.66,17.89,2.37,25.01,0.11 +2019-11-29 04:00:00,41.58,63.14,32.54,29.26,8.85,0.68,16.79,30.96,15.07,1.93,21.05,0.12 +2019-11-29 05:00:00,40.38,58.74,32.36,28.29,8.67,0.67,13.06,31.29,15.24,1.82,18.38,0.15 +2019-11-29 06:00:00,37.84,57.31,31.16,28.2,8.58,0.65,12.23,31.75,16.92,1.89,14.53,0.12 +2019-11-29 07:00:00,39.57,61.64,30.84,28.68,8.43,0.73,12.61,36.3,22.7,1.94,14.53,0.09 +2019-11-29 08:00:00,45.75,74.06,31.29,30.52,9.15,0.87,14.18,47.45,35.57,2.59,15.32,0.11 +2019-11-29 09:00:00,54.31,95.32,35.98,31.01,10.13,0.93,17.27,47.5,32.53,2.62,17.15,0.16 +2019-11-29 10:00:00,59.42,102.18,37.57,30.34,11.0,0.89,20.44,40.52,21.82,2.49,15.6,0.08 +2019-11-29 11:00:00,56.99,99.65,35.68,29.67,12.59,0.79,32.68,34.09,20.91,2.44,18.43,0.11 +2019-11-29 12:00:00,47.92,89.32,32.31,29.52,13.2,0.75,39.55,32.45,14.48,2.78,19.85,0.16 +2019-11-29 13:00:00,47.34,85.48,31.95,30.2,12.6,0.72,45.37,27.9,10.13,2.42,20.25,0.27 +2019-11-29 14:00:00,46.22,83.5,32.89,31.58,11.92,0.74,52.09,27.79,9.41,2.32,22.61,0.15 +2019-11-29 15:00:00,46.6,85.4,33.31,31.88,11.0,0.76,56.13,27.94,9.57,2.3,21.02,0.06 +2019-11-29 16:00:00,45.57,89.04,34.26,32.36,10.32,0.76,53.71,29.99,12.13,2.74,31.03,0.05 +2019-11-29 17:00:00,43.92,95.92,39.3,31.54,8.85,0.84,43.51,35.16,16.04,2.77,38.71,0.07 +2019-11-29 18:00:00,46.37,103.17,51.18,31.83,8.68,1.11,25.86,43.7,19.04,3.82,35.41,0.16 +2019-11-29 19:00:00,55.49,129.41,63.06,32.07,9.33,1.42,16.57,71.5,39.93,3.6,31.72,0.81 +2019-11-29 20:00:00,70.87,153.19,65.14,34.78,10.47,1.75,13.84,86.09,54.38,5.2,39.88,1.65 +2019-11-29 21:00:00,84.55,179.88,63.56,36.28,10.86,2.08,14.41,105.09,77.6,6.94,53.87,2.49 +2019-11-29 22:00:00,103.15,201.35,62.97,38.98,11.28,2.21,14.83,112.56,85.75,7.2,60.01,2.19 +2019-11-29 23:00:00,102.05,188.22,59.93,37.31,12.13,2.01,16.05,102.86,75.71,6.64,62.29,2.59 +2019-11-30 00:00:00,100.66,173.59,54.2,35.53,11.78,1.59,15.53,76.88,49.57,6.03,61.25,2.21 +2019-11-30 01:00:00,94.84,159.23,50.19,34.86,10.02,1.22,14.1,65.96,39.52,5.25,48.57,1.44 +2019-11-30 02:00:00,91.21,145.42,47.54,35.76,9.29,1.13,14.55,59.0,34.21,4.61,36.77,0.83 +2019-11-30 03:00:00,91.58,138.6,43.31,33.87,9.05,1.0,14.31,48.55,25.68,4.64,35.35,0.43 +2019-11-30 04:00:00,93.36,143.78,40.79,35.16,8.51,0.96,14.35,44.64,22.93,3.88,29.62,0.51 +2019-11-30 05:00:00,101.3,151.28,36.54,34.92,8.27,0.92,14.66,39.81,20.31,3.59,22.87,0.16 +2019-11-30 06:00:00,103.44,144.49,34.66,35.32,8.14,0.93,15.11,39.72,21.66,3.27,19.4,0.22 +2019-11-30 07:00:00,100.34,143.6,34.32,34.57,8.73,0.99,14.04,47.14,30.63,3.11,16.91,0.25 +2019-11-30 08:00:00,99.36,152.47,35.35,35.04,9.11,1.13,13.66,55.97,39.95,3.51,17.26,0.19 +2019-11-30 09:00:00,96.9,160.69,37.45,35.82,9.36,1.18,15.25,53.18,35.8,3.54,17.63,0.47 +2019-11-30 10:00:00,102.63,163.32,39.37,35.69,10.32,1.19,17.54,48.63,29.29,3.5,17.54,0.68 +2019-11-30 11:00:00,107.07,163.99,41.94,35.95,10.88,1.12,21.86,44.31,21.92,3.46,18.05,0.4 +2019-11-30 12:00:00,103.96,156.32,39.47,36.9,12.05,0.98,30.29,36.49,16.13,3.4,22.03,0.52 +2019-11-30 13:00:00,99.75,153.98,37.93,39.18,11.7,0.93,40.23,33.28,14.04,3.68,24.09,0.36 +2019-11-30 14:00:00,93.8,147.23,36.79,38.98,10.06,0.86,47.8,30.96,12.09,3.15,23.29,0.3 +2019-11-30 15:00:00,86.8,135.33,31.83,39.04,8.35,0.8,53.48,27.97,11.76,2.9,19.66,0.15 +2019-11-30 16:00:00,78.93,125.13,31.45,37.23,9.76,0.73,54.79,27.79,11.69,2.46,19.4,0.11 +2019-11-30 17:00:00,72.57,119.55,37.27,36.21,8.03,0.76,46.78,33.2,14.47,2.6,26.03,0.1 +2019-11-30 18:00:00,69.74,127.84,50.36,35.05,8.26,1.01,25.4,43.18,15.16,2.89,22.9,0.1 +2019-11-30 19:00:00,77.6,155.02,61.69,35.27,9.01,1.44,15.03,74.68,44.73,4.3,35.38,0.26 +2019-11-30 20:00:00,92.53,185.2,64.83,37.13,10.47,1.8,15.09,90.71,61.41,6.04,48.88,0.71 +2019-11-30 21:00:00,108.6,219.35,64.04,39.34,11.22,2.17,14.9,109.38,83.49,6.09,48.45,1.99 +2019-11-30 22:00:00,124.22,228.7,66.07,40.3,12.22,2.3,15.82,122.89,97.25,6.57,57.42,3.4 +2019-11-30 23:00:00,135.78,230.58,63.55,42.47,12.34,1.97,16.65,102.78,76.4,5.83,50.99,4.45 +2019-12-01 00:00:00,138.98,221.88,60.89,42.11,12.52,1.61,17.28,89.48,61.22,5.81,43.45,3.59 +2019-12-01 01:00:00,134.22,206.34,57.28,40.23,11.29,1.33,17.17,75.25,47.66,4.69,30.62,2.03 +2019-12-01 02:00:00,130.26,194.17,54.32,39.41,11.78,1.15,18.08,71.92,45.11,4.25,27.83,0.9 +2019-12-01 03:00:00,123.52,185.03,49.17,35.42,13.05,1.06,16.43,69.44,45.35,4.49,26.32,0.52 +2019-12-01 04:00:00,117.45,174.27,49.72,35.98,13.12,1.02,16.66,64.02,39.45,4.44,29.18,0.41 +2019-12-01 05:00:00,122.81,179.14,46.65,36.34,9.96,0.98,17.2,58.19,34.42,4.17,25.76,0.23 +2019-12-01 06:00:00,129.26,192.49,47.47,35.61,9.77,0.97,16.02,58.45,34.44,3.75,21.09,0.33 +2019-12-01 07:00:00,131.71,196.87,47.91,35.55,10.03,1.01,15.83,65.59,42.28,3.29,18.59,0.4 +2019-12-01 08:00:00,130.77,198.78,49.7,36.18,13.26,1.09,16.93,66.52,42.0,3.23,17.38,0.15 +2019-12-01 09:00:00,134.39,204.37,52.65,37.38,11.02,1.11,21.89,61.11,34.34,3.49,16.96,0.31 +2019-12-01 10:00:00,148.36,218.63,48.1,37.41,11.9,1.05,32.22,48.55,23.07,3.35,16.01,0.33 +2019-12-01 11:00:00,161.2,224.94,41.43,36.09,12.15,0.95,46.84,39.59,17.04,2.92,14.73,0.19 +2019-12-01 12:00:00,137.98,195.72,37.62,34.97,11.54,0.83,59.82,35.71,14.38,2.7,13.75,0.18 +2019-12-01 13:00:00,109.39,157.61,29.63,34.15,13.2,0.73,66.3,26.29,10.17,2.26,14.06,0.07 +2019-12-01 14:00:00,91.92,138.5,27.52,34.29,11.96,0.66,69.05,24.43,9.5,2.03,14.92,0.14 +2019-12-01 15:00:00,84.1,131.36,27.99,34.18,11.86,0.66,70.95,25.05,9.96,1.91,14.32,0.13 +2019-12-01 16:00:00,80.52,127.83,29.44,33.8,10.75,0.68,68.81,25.41,9.95,1.75,15.08,0.1 +2019-12-01 17:00:00,77.84,129.96,36.01,32.85,8.94,0.76,57.32,32.69,13.3,1.89,18.06,0.12 +2019-12-01 18:00:00,80.6,140.22,51.0,32.98,8.9,0.97,37.16,42.61,14.34,2.18,17.08,0.11 +2019-12-01 19:00:00,97.04,174.88,67.69,34.98,9.22,1.37,19.43,71.43,36.24,3.33,25.31,0.35 +2019-12-01 20:00:00,123.16,224.23,72.67,36.55,10.58,1.82,17.36,100.45,65.71,4.21,30.21,0.38 +2019-12-01 21:00:00,146.74,262.08,74.93,38.01,11.45,2.0,18.57,111.56,77.66,4.88,36.27,0.65 +2019-12-01 22:00:00,160.77,263.92,75.2,39.42,11.97,2.14,18.54,119.85,87.29,5.11,35.52,1.0 +2019-12-01 23:00:00,174.94,276.11,74.46,42.33,13.06,2.19,18.75,132.06,101.65,5.51,35.2,1.34 +2019-12-02 00:00:00,174.59,274.85,70.21,43.07,14.15,2.11,18.52,133.02,105.07,5.65,33.37,1.09 +2019-12-02 01:00:00,178.14,271.67,65.31,42.71,15.64,2.06,18.71,123.67,97.9,5.45,33.08,1.24 +2019-12-02 02:00:00,181.95,268.29,64.0,42.67,13.39,1.79,20.18,114.21,87.13,5.15,29.52,1.9 +2019-12-02 03:00:00,182.33,258.43,59.7,39.65,13.43,1.51,18.94,92.41,65.05,5.21,27.37,2.0 +2019-12-02 04:00:00,181.56,251.91,56.06,39.23,11.85,1.45,19.36,76.73,50.18,4.85,25.96,1.69 +2019-12-02 05:00:00,180.5,245.93,53.74,39.18,10.46,1.27,18.69,65.41,39.08,4.27,23.62,0.9 +2019-12-02 06:00:00,179.93,244.71,49.79,39.31,10.55,1.31,17.57,63.78,39.77,3.74,18.84,0.51 +2019-12-02 07:00:00,171.49,240.78,49.52,39.44,10.34,1.34,17.07,69.18,45.98,3.58,16.78,0.42 +2019-12-02 08:00:00,156.03,225.74,52.52,38.61,9.81,1.38,15.77,76.37,52.49,3.49,14.4,0.2 +2019-12-02 09:00:00,134.94,212.79,57.76,37.88,10.45,1.33,19.86,68.22,39.17,3.49,14.85,0.22 +2019-12-02 10:00:00,122.33,205.6,52.7,37.42,10.66,1.22,29.07,55.1,27.51,3.11,13.71,0.29 +2019-12-02 11:00:00,124.23,204.57,47.89,36.62,10.57,1.15,39.87,45.3,19.14,2.93,12.28,0.14 +2019-12-02 12:00:00,123.9,213.3,44.38,36.8,10.96,1.11,55.17,39.98,14.94,3.28,15.61,0.25 +2019-12-02 13:00:00,110.9,191.68,35.99,35.19,11.14,1.03,66.37,30.99,10.96,3.17,17.48,0.14 +2019-12-02 14:00:00,92.33,166.7,32.35,33.58,11.07,0.88,72.69,28.51,10.88,2.78,18.25,0.1 +2019-12-02 15:00:00,78.07,150.05,33.21,32.13,9.92,0.74,71.59,28.31,10.22,2.21,17.42,0.1 +2019-12-02 16:00:00,69.16,133.17,34.98,31.56,9.09,0.7,70.14,29.98,10.47,2.18,16.46,0.11 +2019-12-02 17:00:00,70.49,136.65,43.99,32.31,8.87,0.77,58.82,38.04,14.34,2.55,19.64,0.11 +2019-12-02 18:00:00,84.0,160.27,64.42,33.79,9.05,1.13,34.77,59.54,24.85,3.77,24.39,0.08 +2019-12-02 19:00:00,107.6,215.43,77.7,38.37,9.26,1.7,20.81,92.49,53.75,5.41,32.18,0.27 +2019-12-02 20:00:00,143.12,287.32,82.23,40.09,11.01,2.25,19.54,116.95,78.23,6.27,45.42,0.78 +2019-12-02 21:00:00,170.02,308.44,83.65,42.65,11.89,2.54,19.5,138.54,103.42,7.35,53.15,1.53 +2019-12-02 22:00:00,183.22,319.03,81.41,45.01,12.46,2.6,19.35,136.9,101.53,7.06,60.97,2.05 +2019-12-02 23:00:00,186.04,310.55,80.02,44.32,12.42,2.45,18.63,141.81,108.64,7.42,54.73,1.83 +2019-12-03 00:00:00,183.81,303.46,75.84,44.54,12.41,2.25,18.48,135.38,104.0,6.98,52.51,1.69 +2019-12-03 01:00:00,188.34,289.88,69.34,44.59,12.6,1.86,17.79,111.6,81.44,7.1,49.28,2.43 +2019-12-03 02:00:00,184.81,273.73,63.39,43.63,11.95,1.58,18.59,97.38,68.18,5.83,42.72,2.53 +2019-12-03 03:00:00,169.99,242.53,58.69,40.19,10.83,1.25,16.09,74.72,45.53,5.37,33.05,1.68 +2019-12-03 04:00:00,154.02,218.65,54.79,40.2,10.27,1.1,15.91,61.33,32.95,4.56,28.09,1.1 +2019-12-03 05:00:00,155.81,213.1,50.68,39.45,9.29,0.96,15.46,54.7,28.38,4.03,23.86,0.64 +2019-12-03 06:00:00,151.65,211.09,48.78,39.26,9.31,0.95,16.01,54.96,28.9,3.68,20.15,0.46 +2019-12-03 07:00:00,144.29,208.93,49.08,37.9,9.47,0.99,16.5,64.75,41.46,3.43,18.16,0.28 +2019-12-03 08:00:00,141.01,215.23,49.51,37.73,9.44,1.12,16.57,71.56,48.8,3.41,17.22,0.06 +2019-12-03 09:00:00,143.23,243.47,53.57,37.86,10.54,1.19,19.63,68.3,43.16,3.58,22.86,0.12 +2019-12-03 10:00:00,148.95,261.44,55.7,38.17,12.71,1.18,29.2,60.28,31.38,3.75,30.43,0.17 +2019-12-03 11:00:00,148.45,260.6,53.23,36.85,13.65,1.03,45.0,50.47,21.1,3.69,23.91,0.11 +2019-12-03 12:00:00,124.38,227.54,43.74,35.74,13.47,0.88,61.01,41.49,17.57,3.23,19.38,0.11 +2019-12-03 13:00:00,105.93,204.06,40.67,35.82,12.82,0.75,70.12,34.46,11.86,3.09,18.24,0.11 +2019-12-03 14:00:00,90.34,176.13,40.24,33.66,12.08,0.72,76.63,34.41,12.1,2.92,15.63,0.11 +2019-12-03 15:00:00,77.48,157.54,38.41,33.18,10.94,0.72,75.76,32.25,11.07,2.67,15.42,0.08 +2019-12-03 16:00:00,71.88,144.61,40.05,32.2,9.32,0.72,70.16,33.55,11.86,2.39,14.8,0.09 +2019-12-03 17:00:00,71.54,153.89,51.46,31.81,8.56,0.91,56.54,46.84,20.08,2.49,17.35,0.23 +2019-12-03 18:00:00,78.56,172.96,75.85,33.27,8.89,1.42,28.51,78.01,39.99,3.57,27.91,0.38 +2019-12-03 19:00:00,106.86,251.54,87.56,35.51,10.22,2.08,17.88,113.22,71.68,5.14,47.17,0.67 +2019-12-03 20:00:00,141.46,301.53,88.99,39.71,11.76,2.5,18.3,129.93,90.48,5.16,54.49,0.49 +2019-12-03 21:00:00,168.26,327.62,90.41,42.27,13.24,2.86,19.23,148.4,110.45,5.54,51.11,0.56 +2019-12-03 22:00:00,194.12,358.89,90.9,46.66,14.17,3.35,20.86,181.68,147.5,5.69,54.82,0.72 +2019-12-03 23:00:00,216.52,378.94,89.61,51.23,15.01,3.38,21.45,195.77,163.44,6.24,62.65,0.89 +2019-12-04 00:00:00,230.08,373.46,85.78,50.96,15.36,3.21,21.8,197.16,170.02,6.38,67.12,1.25 +2019-12-04 01:00:00,227.59,362.23,78.78,49.58,14.38,2.85,21.66,183.09,155.29,6.02,53.73,1.92 +2019-12-04 02:00:00,209.51,323.8,70.26,50.88,13.87,2.2,22.23,151.28,125.15,5.27,47.04,1.59 +2019-12-04 03:00:00,189.24,277.79,69.0,43.12,12.09,1.56,19.02,109.16,78.03,4.93,37.36,1.28 +2019-12-04 04:00:00,160.84,231.0,65.7,41.76,12.13,1.35,15.71,92.93,61.73,4.3,27.91,1.24 +2019-12-04 05:00:00,135.54,197.35,59.76,39.42,11.34,1.15,13.79,84.19,54.28,4.22,26.29,1.12 +2019-12-04 06:00:00,123.27,184.54,57.97,37.26,10.72,1.07,13.46,82.94,54.99,4.08,23.31,0.74 +2019-12-04 07:00:00,118.78,184.48,58.53,36.78,11.72,1.13,12.7,85.95,57.92,3.55,21.13,0.67 +2019-12-04 08:00:00,118.06,197.78,61.53,37.28,12.08,1.39,13.25,113.04,83.56,3.69,20.95,0.55 +2019-12-04 09:00:00,131.48,239.55,68.2,38.63,11.87,1.53,15.86,109.48,79.68,3.91,21.79,0.58 +2019-12-04 10:00:00,148.06,270.77,74.09,41.32,13.52,1.43,24.96,87.99,51.04,4.09,21.01,0.6 +2019-12-04 11:00:00,171.87,300.47,74.05,43.09,14.21,1.32,35.37,72.69,35.31,4.18,23.02,0.54 +2019-12-04 12:00:00,171.39,297.76,73.29,43.44,15.01,1.2,49.86,60.48,22.55,4.29,37.54,0.38 +2019-12-04 13:00:00,151.77,278.81,56.45,40.77,14.94,1.0,69.71,45.68,15.46,4.07,29.82,0.22 +2019-12-04 14:00:00,119.96,228.65,46.94,38.31,14.78,0.86,80.21,37.04,12.06,3.68,26.03,0.26 +2019-12-04 15:00:00,105.51,206.85,44.48,37.38,13.87,0.79,86.21,35.21,11.76,3.28,26.71,0.31 +2019-12-04 16:00:00,110.63,187.9,42.42,36.61,12.48,0.8,85.18,32.67,10.73,3.2,32.93,0.17 +2019-12-04 17:00:00,101.68,188.94,50.71,37.51,11.07,0.98,64.03,36.92,8.32,3.3,34.56,0.12 +2019-12-04 18:00:00,110.54,216.83,77.96,39.29,9.84,1.5,29.87,68.25,26.83,4.85,45.63,0.12 +2019-12-04 19:00:00,137.79,277.56,90.43,43.76,10.38,2.23,19.51,110.28,64.28,6.2,67.62,0.14 +2019-12-04 20:00:00,182.66,332.58,98.14,49.26,12.6,3.3,19.81,164.74,123.91,6.54,78.94,0.2 +2019-12-04 21:00:00,224.82,390.84,105.89,52.41,15.97,4.12,20.39,201.58,164.14,6.75,74.31,0.53 +2019-12-04 22:00:00,259.04,446.35,105.86,53.51,19.37,4.83,23.08,203.19,189.2,7.92,86.02,0.57 +2019-12-04 23:00:00,277.7,473.82,103.31,54.68,19.88,5.1,25.96,223.26,206.31,9.55,97.35,0.87 +2019-12-05 00:00:00,297.3,484.63,101.22,58.53,20.5,5.26,25.95,227.11,212.68,8.82,96.4,1.05 +2019-12-05 01:00:00,300.21,466.81,98.16,56.82,20.11,4.76,25.88,222.29,209.16,8.89,94.3,1.06 +2019-12-05 02:00:00,294.23,443.32,88.71,56.38,19.86,4.32,29.98,217.58,204.74,8.24,97.45,1.26 +2019-12-05 03:00:00,286.54,413.24,81.21,59.21,18.38,4.08,28.62,201.68,194.89,8.8,74.49,1.26 +2019-12-05 04:00:00,276.69,391.02,74.06,54.29,15.7,3.81,28.16,189.05,187.46,9.45,81.47,2.96 +2019-12-05 05:00:00,274.61,379.08,73.2,54.01,16.45,3.6,31.23,167.92,167.06,9.86,77.23,1.15 +2019-12-05 06:00:00,278.69,381.2,73.03,50.92,15.13,3.4,29.19,173.11,159.51,8.75,63.75,0.95 +2019-12-05 07:00:00,282.93,384.84,69.24,51.15,13.98,3.27,27.11,188.59,166.63,8.88,79.97,0.83 +2019-12-05 08:00:00,290.73,406.42,72.64,49.6,13.59,3.68,26.24,210.41,190.49,9.58,78.99,1.01 +2019-12-05 09:00:00,313.58,469.08,101.92,55.74,13.53,3.71,28.11,219.12,178.11,9.57,81.48,1.23 +2019-12-05 10:00:00,329.45,505.24,135.04,60.02,14.27,3.09,29.48,186.87,119.08,8.25,85.14,1.45 +2019-12-05 11:00:00,326.18,475.94,128.31,61.9,14.67,2.21,43.05,126.36,57.87,7.59,62.34,1.92 +2019-12-05 12:00:00,287.06,424.45,95.69,56.98,14.1,1.69,60.46,86.63,34.38,6.26,49.22,1.16 +2019-12-05 13:00:00,243.8,366.35,80.0,54.0,15.06,1.4,80.04,68.7,24.29,6.92,42.54,2.75 +2019-12-05 14:00:00,221.64,330.38,76.88,53.04,14.29,1.28,88.57,61.33,17.75,5.87,35.61,2.53 +2019-12-05 15:00:00,208.38,318.81,69.71,52.97,13.18,1.19,102.25,52.87,13.01,5.61,39.49,1.61 +2019-12-05 16:00:00,201.6,315.0,65.35,52.04,12.39,1.31,104.31,47.52,9.49,5.42,46.74,0.72 +2019-12-05 17:00:00,202.37,328.38,77.12,51.34,10.87,1.39,72.0,55.15,10.8,5.36,58.56,0.44 +2019-12-05 18:00:00,205.25,357.41,100.88,51.0,9.41,1.93,37.11,95.2,40.58,6.61,55.99,0.67 +2019-12-05 19:00:00,232.26,421.12,111.8,53.27,10.51,2.4,25.45,119.46,72.64,7.44,73.22,1.58 +2019-12-05 20:00:00,267.07,448.45,107.54,56.66,11.65,2.86,23.51,138.24,95.61,7.52,76.31,2.74 +2019-12-05 21:00:00,292.42,491.9,108.47,58.43,12.58,3.27,22.21,168.43,119.68,8.31,85.01,3.48 +2019-12-05 22:00:00,302.16,497.04,106.04,56.94,13.28,3.39,22.93,171.04,134.92,8.92,89.95,5.19 +2019-12-05 23:00:00,312.66,502.75,100.55,59.57,13.99,3.43,26.03,171.54,152.73,9.49,94.97,6.52 +2019-12-06 00:00:00,316.56,489.4,97.98,56.16,14.87,3.38,27.21,171.33,153.5,10.27,98.37,5.43 +2019-12-06 01:00:00,323.79,481.62,89.97,64.21,12.86,3.12,27.66,152.79,137.87,10.16,97.79,4.93 +2019-12-06 02:00:00,315.62,462.4,79.55,62.22,11.58,2.72,26.24,140.98,119.28,10.3,96.29,4.13 +2019-12-06 03:00:00,305.27,437.48,73.7,57.58,11.09,2.41,23.72,133.47,115.37,9.79,77.93,2.94 +2019-12-06 04:00:00,288.33,409.27,65.97,56.91,10.97,2.25,21.46,127.83,114.19,9.53,69.92,2.31 +2019-12-06 05:00:00,283.21,399.09,57.77,56.34,11.24,2.08,20.4,119.83,95.85,9.53,62.87,0.88 +2019-12-06 06:00:00,280.21,384.44,54.1,57.7,11.11,1.94,20.1,116.23,95.18,9.31,57.93,0.66 +2019-12-06 07:00:00,277.8,385.79,54.91,59.27,10.32,1.97,20.89,120.89,99.55,9.08,56.21,0.75 +2019-12-06 08:00:00,287.98,405.92,57.54,56.79,10.33,2.26,22.74,142.58,120.51,8.82,53.47,0.97 +2019-12-06 09:00:00,310.45,454.59,76.78,61.51,10.62,2.38,24.52,139.68,106.96,8.9,53.32,1.44 +2019-12-06 10:00:00,339.93,494.42,93.44,66.82,12.33,2.02,28.69,113.45,65.15,8.31,50.84,1.82 +2019-12-06 11:00:00,322.02,456.02,83.63,63.86,16.32,1.66,37.42,85.09,38.4,7.72,50.45,1.43 +2019-12-06 12:00:00,253.15,368.92,66.15,59.39,17.67,1.25,50.83,58.82,22.4,6.59,42.73,0.92 +2019-12-06 13:00:00,193.55,292.43,52.47,55.7,20.23,1.04,66.01,43.71,14.82,5.74,43.19,0.56 +2019-12-06 14:00:00,156.36,234.31,46.5,54.27,19.91,1.02,69.67,37.82,12.2,5.05,37.93,0.66 +2019-12-06 15:00:00,139.09,215.14,46.65,52.94,18.53,1.06,67.75,37.23,11.42,4.57,33.42,0.45 +2019-12-06 16:00:00,139.44,215.37,49.55,53.24,16.13,1.17,60.03,37.08,8.99,4.75,33.0,0.33 +2019-12-06 17:00:00,142.71,229.88,60.11,52.59,14.12,1.26,43.35,44.62,10.64,4.87,39.14,0.41 +2019-12-06 18:00:00,140.13,245.84,74.45,49.97,11.54,1.62,22.46,77.72,37.75,5.8,38.67,0.4 +2019-12-06 19:00:00,151.74,276.01,79.99,49.43,11.29,2.09,16.93,105.29,62.96,7.17,45.86,0.91 +2019-12-06 20:00:00,173.69,307.61,80.95,54.02,12.12,2.39,17.79,120.84,82.76,7.73,58.13,1.97 +2019-12-06 21:00:00,197.59,331.8,77.79,54.69,12.3,2.49,18.96,113.26,75.0,8.16,58.98,2.89 +2019-12-06 22:00:00,217.76,342.62,77.1,57.0,12.28,2.65,19.74,120.05,83.2,8.18,60.4,3.62 +2019-12-06 23:00:00,244.09,369.94,76.56,59.51,12.02,2.58,21.67,122.93,86.39,8.23,59.09,3.38 +2019-12-07 00:00:00,259.42,378.14,73.59,56.47,11.66,2.39,24.79,125.01,90.75,7.83,53.2,2.34 +2019-12-07 01:00:00,267.03,376.32,68.28,55.54,10.93,2.26,20.11,114.84,83.06,7.51,48.21,1.85 +2019-12-07 02:00:00,262.52,366.26,61.28,54.18,10.7,2.1,21.42,113.43,84.4,7.31,45.66,1.78 +2019-12-07 03:00:00,260.2,358.88,57.61,52.91,10.67,1.89,19.94,106.14,77.99,7.04,43.37,1.89 +2019-12-07 04:00:00,256.77,353.34,52.52,52.54,10.66,1.89,19.5,107.18,84.16,6.56,39.85,2.28 +2019-12-07 05:00:00,256.63,349.12,52.1,51.58,11.08,1.8,18.91,112.67,90.96,6.73,38.39,1.47 +2019-12-07 06:00:00,255.5,350.58,49.19,53.69,10.2,1.78,19.41,103.79,85.4,6.52,38.57,0.96 +2019-12-07 07:00:00,253.77,348.93,48.27,55.08,10.31,1.82,20.09,104.2,86.72,6.84,38.47,1.35 +2019-12-07 08:00:00,261.66,365.83,51.08,57.89,10.48,2.02,20.92,117.93,93.86,6.84,34.83,1.63 +2019-12-07 09:00:00,275.65,390.5,64.9,58.8,10.83,2.0,22.59,106.73,78.84,6.95,32.15,1.56 +2019-12-07 10:00:00,292.53,414.55,84.71,59.98,10.95,1.94,25.82,94.19,49.94,6.4,30.08,1.44 +2019-12-07 11:00:00,307.88,421.94,87.89,62.57,16.14,1.72,33.84,85.42,37.65,6.89,33.74,1.11 +2019-12-07 12:00:00,302.86,425.63,79.11,64.96,15.42,1.49,44.87,67.13,24.15,6.86,41.77,1.0 +2019-12-07 13:00:00,253.09,365.39,59.2,59.78,18.44,1.21,64.24,47.2,14.24,5.97,39.82,0.86 +2019-12-07 14:00:00,177.18,256.72,45.17,53.99,20.04,1.02,82.07,34.41,9.13,4.67,29.77,0.34 +2019-12-07 15:00:00,140.19,212.31,41.39,50.6,19.39,0.93,81.67,31.08,7.71,4.64,30.04,0.24 +2019-12-07 16:00:00,126.67,196.36,41.99,49.47,18.31,0.93,75.98,31.03,7.51,4.32,27.58,0.14 +2019-12-07 17:00:00,120.28,205.58,50.94,48.4,16.93,1.22,48.62,39.46,10.69,4.66,39.55,0.16 +2019-12-07 18:00:00,125.1,254.38,74.1,48.66,15.76,2.07,23.93,90.04,50.54,5.83,48.97,0.42 +2019-12-07 19:00:00,147.97,296.2,84.11,50.68,17.63,3.23,20.63,137.86,105.02,6.78,71.72,0.7 +2019-12-07 20:00:00,197.17,344.18,86.67,50.51,20.3,4.2,23.14,169.7,148.11,9.27,87.36,1.89 +2019-12-07 21:00:00,236.35,406.69,95.05,54.7,22.51,5.09,24.01,203.02,182.1,9.73,86.07,4.75 +2019-12-07 22:00:00,273.52,448.39,94.48,63.18,24.54,5.42,25.48,218.83,186.04,10.02,87.39,10.9 +2019-12-07 23:00:00,301.08,476.44,90.13,61.56,25.81,5.33,26.59,220.18,213.71,10.9,77.7,12.29 +2019-12-08 00:00:00,298.65,468.89,85.79,57.73,21.99,5.58,27.0,238.39,226.06,10.96,84.05,11.68 +2019-12-08 01:00:00,305.92,470.85,77.48,64.93,17.94,5.04,27.58,225.28,213.53,12.35,89.12,11.64 +2019-12-08 02:00:00,303.72,442.44,75.23,63.79,17.32,4.59,29.41,209.0,194.65,12.37,89.31,10.75 +2019-12-08 03:00:00,296.18,427.09,65.79,57.56,17.58,4.34,28.04,219.39,197.83,11.55,85.8,10.44 +2019-12-08 04:00:00,286.46,411.54,64.47,53.13,15.36,4.15,27.29,198.87,188.19,10.86,84.8,14.62 +2019-12-08 05:00:00,284.21,401.74,59.86,57.47,14.66,3.84,27.51,194.41,172.52,10.26,93.79,14.36 +2019-12-08 06:00:00,290.85,400.1,52.95,58.12,14.1,3.63,24.94,197.14,167.11,9.61,84.34,11.57 +2019-12-08 07:00:00,293.98,398.36,54.73,60.0,12.57,3.3,23.32,179.67,157.67,9.57,75.78,8.57 +2019-12-08 08:00:00,292.85,402.1,53.13,61.5,11.2,3.11,23.19,174.03,150.86,9.14,67.26,5.4 +2019-12-08 09:00:00,309.4,424.96,66.11,63.49,11.22,2.84,22.96,151.02,117.28,8.85,57.53,3.69 +2019-12-08 10:00:00,322.79,431.47,94.66,67.38,10.33,2.42,24.22,127.89,73.86,8.52,46.46,2.47 +2019-12-08 11:00:00,325.11,435.52,89.83,66.07,11.87,1.93,31.16,99.43,45.27,7.65,39.22,1.61 +2019-12-08 12:00:00,306.78,409.36,75.76,64.99,13.25,1.58,45.02,72.87,31.81,7.05,37.99,1.64 +2019-12-08 13:00:00,249.16,339.08,55.7,60.78,13.62,1.24,59.5,53.33,23.41,5.9,38.18,1.06 +2019-12-08 14:00:00,172.02,249.92,47.66,56.61,13.72,1.1,67.38,42.42,17.06,4.59,29.87,0.78 +2019-12-08 15:00:00,130.37,190.65,43.45,55.26,13.54,0.96,69.2,37.8,14.6,4.01,31.72,0.41 +2019-12-08 16:00:00,107.02,170.35,44.23,52.53,12.97,0.88,66.86,38.07,15.53,3.66,31.27,0.36 +2019-12-08 17:00:00,95.55,161.47,52.33,49.19,11.6,0.98,47.81,43.0,14.38,3.98,31.41,0.5 +2019-12-08 18:00:00,97.94,187.54,69.5,48.08,10.25,1.41,24.47,74.66,38.74,4.93,31.59,0.38 +2019-12-08 19:00:00,125.31,248.21,77.71,49.3,10.71,2.24,18.79,107.63,69.79,5.1,39.7,0.62 +2019-12-08 20:00:00,175.67,309.0,82.48,54.55,12.41,3.02,19.76,136.55,98.91,6.27,46.51,2.27 +2019-12-08 21:00:00,210.09,363.75,85.21,56.81,12.85,3.64,20.43,164.54,132.07,7.8,54.59,4.91 +2019-12-08 22:00:00,235.22,393.42,87.11,55.02,13.69,3.76,12.56,156.57,135.88,8.61,61.74,6.55 +2019-12-08 23:00:00,244.19,386.06,84.98,57.98,13.82,3.56,11.78,147.08,125.71,8.96,62.73,6.81 +2019-12-09 00:00:00,242.56,374.6,79.84,61.87,13.18,3.27,12.06,149.99,130.8,8.34,62.4,5.37 +2019-12-09 01:00:00,239.98,362.03,72.71,62.81,12.56,2.95,11.96,142.65,127.81,8.85,61.16,3.76 +2019-12-09 02:00:00,236.25,347.08,65.4,61.71,12.0,2.73,12.13,141.72,114.19,8.34,57.09,2.65 +2019-12-09 03:00:00,227.03,330.74,60.72,56.07,11.91,2.67,11.32,142.89,118.89,7.86,52.7,2.47 +2019-12-09 04:00:00,222.21,314.69,58.44,54.97,11.47,2.67,11.79,148.67,128.79,7.52,52.09,2.6 +2019-12-09 05:00:00,217.73,305.88,56.49,54.49,10.95,2.57,12.82,138.52,120.88,7.43,50.78,2.42 +2019-12-09 06:00:00,219.1,308.03,55.27,49.18,10.69,2.61,11.34,136.73,132.12,7.56,49.95,2.41 +2019-12-09 07:00:00,230.16,319.69,54.34,57.52,11.0,2.63,12.87,158.04,142.06,7.35,47.82,2.46 +2019-12-09 08:00:00,241.94,340.96,57.91,62.38,10.64,2.79,12.98,166.39,149.75,7.52,46.44,1.89 +2019-12-09 09:00:00,260.36,381.05,74.33,61.55,10.89,2.73,12.31,153.33,124.2,8.02,43.87,1.83 +2019-12-09 10:00:00,273.04,413.5,94.66,65.42,10.91,2.16,13.93,123.69,76.99,7.38,37.41,1.58 +2019-12-09 11:00:00,265.87,386.57,84.47,62.56,11.85,1.68,23.66,86.95,41.32,5.93,29.85,1.39 +2019-12-09 12:00:00,220.66,322.19,62.34,61.23,12.93,1.29,43.85,58.97,24.68,4.99,29.37,1.51 +2019-12-09 13:00:00,157.46,234.68,45.88,54.53,13.51,0.96,67.32,40.16,15.01,3.95,31.0,1.06 +2019-12-09 14:00:00,119.37,184.12,43.51,52.88,13.06,0.84,77.57,35.75,12.28,3.21,24.01,0.77 +2019-12-09 15:00:00,106.17,173.87,41.6,51.06,12.46,0.88,82.58,33.04,10.58,3.01,29.27,0.42 +2019-12-09 16:00:00,99.08,164.36,43.56,48.59,11.81,0.86,81.4,33.99,10.64,2.94,29.57,0.16 +2019-12-09 17:00:00,100.74,174.42,53.66,47.99,11.15,0.95,60.63,39.97,10.21,3.53,34.07,0.07 +2019-12-09 18:00:00,109.51,221.22,75.03,47.83,10.44,1.4,29.78,63.31,22.28,4.38,35.42,0.91 +2019-12-09 19:00:00,134.66,274.68,84.1,48.29,10.26,1.99,19.25,94.68,50.97,5.35,35.25,0.56 +2019-12-09 20:00:00,178.13,314.07,92.51,54.31,12.64,2.93,19.97,143.37,105.42,6.34,47.01,1.07 +2019-12-09 21:00:00,217.67,393.52,95.33,59.77,14.38,3.79,20.86,157.28,132.49,7.58,61.82,3.06 +2019-12-09 22:00:00,237.87,415.47,95.27,62.82,16.72,4.26,22.34,172.77,149.72,8.87,71.31,3.84 +2019-12-09 23:00:00,250.34,420.5,91.3,62.11,18.65,4.09,22.61,174.93,150.02,9.8,80.23,4.75 +2019-12-10 00:00:00,256.76,408.98,88.25,63.18,16.3,3.59,24.4,167.76,142.33,9.27,76.11,5.4 +2019-12-10 01:00:00,256.59,390.46,82.88,62.72,14.22,2.99,23.08,163.36,141.53,9.07,67.02,6.48 +2019-12-10 02:00:00,255.33,389.84,71.71,59.11,13.81,2.88,28.81,167.1,142.09,8.49,64.62,5.7 +2019-12-10 03:00:00,242.2,360.88,71.36,56.72,13.4,2.7,27.34,151.03,131.19,8.11,62.6,4.46 +2019-12-10 04:00:00,237.57,345.39,64.45,55.74,12.35,2.46,25.44,143.0,119.69,7.51,58.92,4.17 +2019-12-10 05:00:00,235.56,329.83,59.17,55.12,11.73,2.09,22.69,126.93,105.35,7.47,54.99,3.85 +2019-12-10 06:00:00,240.24,331.74,57.2,57.13,11.31,2.05,22.55,119.76,97.26,7.51,50.23,4.12 +2019-12-10 07:00:00,248.13,343.13,56.61,57.09,10.93,2.01,21.94,117.79,94.9,7.09,44.56,3.69 +2019-12-10 08:00:00,258.47,366.11,58.53,59.09,11.58,2.16,22.6,131.53,109.37,6.94,41.31,2.11 +2019-12-10 09:00:00,276.04,412.39,71.94,64.54,11.69,2.32,25.22,125.37,94.32,7.05,41.39,1.33 +2019-12-10 10:00:00,297.1,451.63,92.22,67.42,12.58,2.16,29.71,114.36,68.56,6.93,37.76,1.5 +2019-12-10 11:00:00,308.97,459.98,84.55,63.13,12.81,1.74,37.45,83.27,37.48,6.46,34.14,0.81 +2019-12-10 12:00:00,272.62,400.79,67.73,58.7,12.85,1.34,58.25,62.01,24.03,5.77,28.29,1.02 +2019-12-10 13:00:00,209.69,317.87,51.01,56.14,12.37,1.05,75.17,44.48,16.69,5.15,24.97,0.66 +2019-12-10 14:00:00,169.1,260.76,46.09,56.71,10.94,0.98,84.41,38.62,13.31,4.29,23.53,0.48 +2019-12-10 15:00:00,150.82,232.63,45.27,54.83,10.13,0.98,89.02,35.6,11.39,3.97,26.66,0.31 +2019-12-10 16:00:00,144.49,222.25,43.5,54.15,9.77,1.0,91.12,31.46,9.03,4.33,24.04,0.2 +2019-12-10 17:00:00,145.37,232.37,55.16,52.17,9.16,1.14,63.17,41.32,10.81,3.83,24.38,0.19 +2019-12-10 18:00:00,156.82,288.02,83.6,51.33,8.93,1.76,29.14,79.06,36.31,5.41,38.96,0.28 +2019-12-10 19:00:00,185.76,361.82,89.83,51.78,10.3,2.53,21.69,117.86,71.82,6.51,56.85,1.37 +2019-12-10 20:00:00,225.66,403.4,102.37,60.49,12.91,3.49,20.44,144.73,103.07,7.05,64.97,3.53 +2019-12-10 21:00:00,274.01,437.3,104.12,62.46,14.14,4.41,22.42,167.22,144.35,8.17,78.49,5.05 +2019-12-10 22:00:00,303.66,472.98,98.94,69.37,16.64,4.97,23.9,195.25,163.67,8.41,77.04,8.17 +2019-12-10 23:00:00,322.74,498.6,96.57,69.16,19.02,4.99,25.43,192.84,166.32,10.01,99.14,10.59 +2019-12-11 00:00:00,333.99,500.49,96.95,66.59,18.28,4.9,26.08,177.85,169.32,11.11,97.17,9.17 +2019-12-11 01:00:00,340.35,498.13,95.16,67.05,17.06,4.54,30.0,185.93,156.8,11.21,99.59,8.45 +2019-12-11 02:00:00,335.02,481.26,89.36,64.38,16.21,4.18,38.16,174.94,159.52,10.9,101.05,10.37 +2019-12-11 03:00:00,324.8,463.96,78.8,59.66,16.65,3.95,31.29,176.92,163.82,9.91,95.12,8.51 +2019-12-11 04:00:00,321.66,457.03,77.53,58.48,15.97,3.96,29.56,176.94,153.84,9.9,96.85,8.34 +2019-12-11 05:00:00,317.39,446.74,74.2,59.43,15.9,3.81,31.1,187.78,163.29,9.58,94.52,8.46 +2019-12-11 06:00:00,317.22,444.64,69.78,62.45,15.64,3.76,31.59,191.44,165.77,9.49,89.62,9.21 +2019-12-11 07:00:00,315.91,441.54,79.4,62.85,15.89,4.02,30.77,187.58,178.05,9.6,86.35,8.85 +2019-12-11 08:00:00,330.25,472.63,72.49,65.62,16.11,4.25,32.88,200.91,193.22,9.91,83.79,6.87 +2019-12-11 09:00:00,363.59,559.48,93.78,71.95,17.04,4.13,40.62,226.58,196.06,10.4,81.73,7.39 +2019-12-11 10:00:00,374.92,564.46,117.21,72.9,16.85,3.01,51.88,166.27,105.7,9.34,70.8,6.26 +2019-12-11 11:00:00,350.4,512.22,103.77,67.1,16.38,2.23,47.6,109.06,48.27,7.57,47.72,3.97 +2019-12-11 12:00:00,303.04,424.48,84.96,64.77,15.36,1.77,52.74,80.65,36.22,6.0,39.17,2.34 +2019-12-11 13:00:00,249.09,372.16,69.5,70.35,13.59,1.38,70.23,65.81,30.06,5.13,35.57,1.26 +2019-12-11 14:00:00,217.95,332.14,57.47,71.44,12.91,1.28,78.64,50.06,19.68,4.27,27.48,1.26 +2019-12-11 15:00:00,197.35,310.42,60.88,70.32,12.02,1.27,80.77,50.63,20.53,4.34,22.55,1.05 +2019-12-11 16:00:00,193.68,310.02,76.49,67.79,10.51,1.43,63.68,49.3,19.54,3.84,29.47,0.9 +2019-12-11 17:00:00,202.5,339.5,82.05,67.74,9.91,1.68,47.59,53.58,13.8,4.7,40.36,1.04 +2019-12-11 18:00:00,220.59,373.24,93.36,69.96,10.77,2.1,31.4,84.16,36.27,5.08,41.84,1.4 +2019-12-11 19:00:00,256.21,446.69,100.14,71.82,11.29,2.86,26.11,115.98,68.86,6.66,63.66,1.31 +2019-12-11 20:00:00,294.04,478.62,93.82,73.3,12.41,3.62,26.89,132.95,89.42,7.65,80.56,1.65 +2019-12-11 21:00:00,324.9,528.89,95.71,79.16,13.97,4.01,32.19,143.67,101.25,8.1,86.75,3.34 +2019-12-11 22:00:00,347.72,540.79,95.66,79.05,15.46,4.2,30.35,160.36,118.38,8.17,74.87,3.52 +2019-12-11 23:00:00,363.74,564.01,94.99,83.72,16.89,4.35,32.98,179.69,144.72,9.04,70.24,3.74 +2019-12-12 00:00:00,375.85,580.43,87.82,84.57,16.61,3.99,34.22,170.24,139.63,9.42,74.79,4.84 +2019-12-12 01:00:00,378.74,567.75,94.5,83.47,15.61,3.83,33.1,178.93,146.55,9.73,71.72,5.85 +2019-12-12 02:00:00,379.17,546.72,85.66,78.27,15.09,3.47,38.99,173.25,130.44,10.71,70.41,6.78 +2019-12-12 03:00:00,368.6,529.17,83.28,71.98,15.22,2.93,45.25,154.02,121.27,8.97,58.02,7.65 +2019-12-12 04:00:00,352.74,501.7,81.92,78.17,14.37,2.26,43.33,115.0,78.83,7.49,59.41,6.43 +2019-12-12 05:00:00,337.38,462.56,72.07,78.64,13.09,2.12,35.45,96.42,62.58,7.96,55.65,3.71 +2019-12-12 06:00:00,332.34,447.0,67.82,72.4,12.54,2.04,28.46,90.64,58.77,7.51,50.81,2.82 +2019-12-12 07:00:00,328.76,443.09,67.16,77.25,12.58,2.04,30.75,88.51,57.3,7.54,46.55,2.32 +2019-12-12 08:00:00,343.04,477.86,69.81,76.29,12.5,2.11,37.66,92.67,60.08,7.99,48.05,1.98 +2019-12-12 09:00:00,363.86,518.73,74.35,76.41,12.71,2.26,39.8,92.01,56.69,7.94,43.67,1.5 +2019-12-12 10:00:00,361.48,536.48,82.54,78.68,13.91,2.3,39.97,87.5,46.72,7.38,39.8,1.3 +2019-12-12 11:00:00,347.52,521.68,75.94,70.48,15.87,2.06,38.51,69.65,29.61,7.49,34.58,1.36 +2019-12-12 12:00:00,317.3,471.66,59.45,62.54,16.28,1.61,45.84,50.49,18.93,5.98,27.74,1.19 +2019-12-12 13:00:00,264.89,399.87,49.21,69.22,15.89,1.41,62.21,38.35,12.15,5.09,23.83,0.84 +2019-12-12 14:00:00,232.8,358.33,52.15,69.0,14.2,1.31,64.24,37.97,18.82,4.7,21.26,0.59 +2019-12-12 15:00:00,217.75,333.74,45.22,67.96,11.77,1.26,62.21,31.79,8.25,4.22,19.76,0.28 +2019-12-12 16:00:00,198.65,308.94,44.66,66.83,10.75,1.33,63.83,30.27,7.03,3.57,23.43,0.14 +2019-12-12 17:00:00,185.17,296.36,49.01,62.83,10.35,1.27,65.31,32.38,7.1,3.46,24.18,0.28 +2019-12-12 18:00:00,186.01,298.99,53.91,60.02,9.49,1.39,52.85,35.51,7.78,3.63,21.14,0.33 +2019-12-12 19:00:00,200.03,306.07,62.46,61.47,8.72,1.72,37.98,42.32,10.35,4.21,25.56,0.44 +2019-12-12 20:00:00,211.32,294.71,56.75,66.6,9.43,1.59,39.45,40.37,10.52,4.66,31.08,0.44 +2019-12-12 21:00:00,202.17,277.7,45.74,63.01,9.54,1.42,38.14,37.14,13.67,3.89,23.18,0.28 +2019-12-12 22:00:00,181.36,233.7,42.4,60.58,8.24,1.32,39.73,30.48,9.34,4.02,21.51,0.42 +2019-12-12 23:00:00,153.43,188.98,40.69,58.82,7.8,1.14,41.95,28.38,7.65,3.43,15.7,0.14 +2019-12-13 00:00:00,119.15,143.45,43.09,57.29,8.1,1.09,37.8,33.52,11.6,3.03,12.76,0.12 +2019-12-13 01:00:00,100.48,118.83,44.53,55.93,7.69,1.05,35.22,33.55,9.67,2.77,12.72,0.17 +2019-12-13 02:00:00,103.44,122.95,39.28,57.54,8.1,1.05,42.47,29.22,8.87,2.26,12.96,0.2 +2019-12-13 03:00:00,109.4,131.7,38.49,57.81,7.8,1.05,36.01,29.32,9.74,2.15,13.87,0.18 +2019-12-13 04:00:00,111.87,133.87,39.39,60.43,7.55,1.03,29.75,29.97,9.91,2.46,14.46,0.12 +2019-12-13 05:00:00,105.19,131.66,36.72,63.26,8.2,1.02,34.06,27.96,9.25,2.37,13.44,0.14 +2019-12-13 06:00:00,99.66,129.53,35.16,43.62,7.37,1.04,34.14,26.55,9.05,2.14,13.29,0.18 +2019-12-13 07:00:00,88.58,110.16,38.4,43.29,7.84,1.03,31.56,29.26,10.79,2.03,13.58,0.12 +2019-12-13 08:00:00,66.39,76.71,43.8,42.03,7.59,1.04,27.53,33.1,12.22,2.05,12.76,0.1 +2019-12-13 09:00:00,48.05,55.44,48.09,45.96,9.06,1.18,26.63,37.8,15.1,2.04,12.82,0.16 +2019-12-13 10:00:00,44.89,56.93,47.45,45.46,7.26,1.34,29.38,38.39,15.51,2.1,12.1,0.22 +2019-12-13 11:00:00,61.8,77.0,43.65,51.49,7.93,1.18,26.67,35.37,13.76,2.3,12.78,0.14 +2019-12-13 12:00:00,73.95,97.06,42.24,45.26,8.43,1.16,28.88,34.16,14.16,2.77,13.42,0.13 +2019-12-13 13:00:00,81.25,114.39,44.75,46.72,8.72,1.21,27.26,34.7,13.82,2.62,14.41,0.25 +2019-12-13 14:00:00,87.8,126.94,43.65,49.8,8.23,1.27,25.51,34.5,13.15,3.02,15.57,0.39 +2019-12-13 15:00:00,97.65,137.77,42.5,48.81,7.67,1.32,25.06,35.41,15.4,3.05,16.47,0.42 +2019-12-13 16:00:00,108.71,145.85,34.7,46.5,7.65,1.19,25.63,29.04,13.43,3.08,17.67,0.23 +2019-12-13 17:00:00,123.62,169.45,40.0,50.18,8.11,1.41,24.81,34.84,14.04,3.59,24.11,0.33 +2019-12-13 18:00:00,132.4,181.2,39.15,50.7,7.56,1.3,24.47,33.01,18.92,3.71,24.24,0.27 +2019-12-13 19:00:00,125.16,176.31,41.66,48.8,7.62,1.27,21.91,34.14,18.02,3.82,24.12,0.34 +2019-12-13 20:00:00,117.02,167.97,43.51,52.09,8.18,1.18,22.32,37.04,16.95,3.9,25.27,0.39 +2019-12-13 21:00:00,105.19,149.93,40.41,46.71,7.96,1.08,26.84,32.97,17.64,3.33,21.12,0.42 +2019-12-13 22:00:00,89.4,125.8,37.89,46.18,7.47,1.0,29.56,32.99,13.53,2.58,18.82,0.11 +2019-12-13 23:00:00,69.92,101.26,40.64,44.87,7.6,0.92,25.78,33.78,14.52,2.31,15.8,0.21 +2019-12-14 00:00:00,65.13,96.02,39.35,44.56,7.52,0.9,20.12,31.07,12.11,2.6,14.22,0.24 +2019-12-14 01:00:00,70.29,104.61,41.17,41.68,7.37,1.04,15.14,36.91,17.12,2.33,16.49,0.21 +2019-12-14 02:00:00,71.72,109.97,38.28,42.37,6.74,1.15,14.29,40.45,23.0,2.74,15.88,0.3 +2019-12-14 03:00:00,69.52,113.64,37.05,40.94,7.24,1.23,12.96,47.79,32.89,2.77,15.97,0.2 +2019-12-14 04:00:00,69.19,114.22,41.82,40.16,7.12,1.18,13.36,49.31,36.35,2.96,16.94,0.28 +2019-12-14 05:00:00,66.75,112.51,35.25,40.23,7.04,0.88,14.57,37.66,22.94,2.8,16.66,0.1 +2019-12-14 06:00:00,68.14,112.45,36.94,39.9,6.85,0.87,14.07,35.27,19.12,3.18,18.22,0.18 +2019-12-14 07:00:00,75.01,118.65,39.29,39.16,7.89,0.92,14.07,36.72,19.7,2.79,19.93,0.19 +2019-12-14 08:00:00,78.68,121.28,38.61,38.41,8.11,0.98,15.95,39.86,23.9,2.6,23.04,0.31 +2019-12-14 09:00:00,76.15,119.09,36.49,39.59,10.67,1.08,18.58,39.2,24.23,2.76,20.82,0.17 +2019-12-14 10:00:00,67.95,106.43,35.17,39.89,9.5,1.03,21.56,32.56,16.93,2.41,18.88,0.2 +2019-12-14 11:00:00,59.74,92.03,33.09,37.17,9.42,0.85,27.6,27.84,13.32,2.32,17.99,0.18 +2019-12-14 12:00:00,59.03,93.44,33.71,35.37,11.02,0.82,32.9,27.46,12.07,2.29,18.09,0.14 +2019-12-14 13:00:00,65.33,98.57,33.4,35.54,10.22,0.8,37.71,26.98,10.9,2.19,18.48,0.12 +2019-12-14 14:00:00,60.04,103.58,32.79,32.68,10.27,0.81,42.18,25.94,10.01,2.07,17.63,0.14 +2019-12-14 15:00:00,58.97,92.64,33.67,33.8,9.62,0.81,45.07,25.27,9.32,1.91,22.17,0.18 +2019-12-14 16:00:00,59.0,96.29,35.24,34.0,9.47,0.85,44.06,25.55,8.67,1.96,23.28,0.09 +2019-12-14 17:00:00,63.39,103.55,41.4,35.29,9.26,0.91,37.16,29.1,9.21,2.33,27.17,0.22 +2019-12-14 18:00:00,74.83,126.69,53.16,37.49,8.55,1.28,23.12,42.7,18.21,3.47,35.5,0.26 +2019-12-14 19:00:00,92.36,167.12,56.9,39.18,9.76,1.8,18.11,67.46,45.7,5.3,39.31,0.54 +2019-12-14 20:00:00,124.03,217.15,57.59,41.07,11.1,2.19,17.57,88.07,71.43,7.52,47.73,1.3 +2019-12-14 21:00:00,137.05,234.01,56.37,40.75,11.16,2.19,17.89,85.01,71.34,7.23,51.88,3.96 +2019-12-14 22:00:00,133.51,227.24,53.73,39.44,10.68,2.04,16.73,73.72,54.92,6.8,49.85,1.36 +2019-12-14 23:00:00,120.25,199.44,50.4,38.2,10.27,1.73,15.81,64.17,45.47,5.85,42.42,1.03 +2019-12-15 00:00:00,108.98,178.25,46.87,37.88,9.78,1.49,14.63,55.01,36.7,4.8,35.04,0.71 +2019-12-15 01:00:00,99.35,163.52,42.3,38.01,8.79,1.31,14.23,48.97,32.57,4.96,31.64,0.63 +2019-12-15 02:00:00,91.75,150.89,38.36,39.29,8.34,1.17,15.33,42.24,26.72,4.66,28.51,0.4 +2019-12-15 03:00:00,83.47,135.86,33.65,37.47,8.58,1.04,13.8,38.4,25.19,3.92,25.71,0.26 +2019-12-15 04:00:00,80.5,127.74,33.57,36.16,7.8,1.12,12.72,43.73,31.7,3.82,23.36,0.28 +2019-12-15 05:00:00,79.96,127.06,33.72,35.96,8.05,1.07,12.41,43.45,31.61,3.88,23.06,0.35 +2019-12-15 06:00:00,84.4,133.81,33.18,35.93,7.93,1.12,13.06,45.35,34.16,3.66,23.93,0.18 +2019-12-15 07:00:00,97.81,153.34,33.47,37.04,8.2,1.16,14.47,49.33,38.6,3.51,21.36,0.27 +2019-12-15 08:00:00,110.55,172.8,33.63,37.88,8.34,1.28,14.58,52.83,42.99,3.56,20.36,0.52 +2019-12-15 09:00:00,114.62,181.88,37.38,39.7,8.72,1.35,15.41,49.33,35.14,3.49,18.09,0.52 +2019-12-15 10:00:00,119.82,189.38,37.59,41.29,8.95,1.4,18.19,44.33,25.87,3.26,16.75,0.21 +2019-12-15 11:00:00,127.59,195.99,38.25,41.8,9.85,1.26,24.11,41.04,21.35,2.86,16.64,0.25 +2019-12-15 12:00:00,119.34,180.26,33.34,39.66,9.65,1.04,33.47,34.23,15.97,2.79,16.27,0.13 +2019-12-15 13:00:00,89.41,134.5,33.88,38.56,9.16,0.89,41.84,33.28,15.31,2.2,15.24,0.09 +2019-12-15 14:00:00,73.8,114.31,32.51,36.73,9.1,0.67,46.11,29.46,12.55,1.96,15.69,0.09 +2019-12-15 15:00:00,68.98,106.41,32.27,36.65,8.31,0.67,47.02,28.96,11.97,1.83,16.45,0.09 +2019-12-15 16:00:00,68.3,106.38,37.2,36.97,7.61,0.76,46.32,31.95,14.22,1.78,14.89,0.09 +2019-12-15 17:00:00,67.66,108.98,42.41,37.01,7.11,1.16,38.2,33.87,13.44,1.96,17.3,0.09 +2019-12-15 18:00:00,72.51,126.51,57.46,38.77,7.35,1.16,22.74,49.93,29.27,2.41,19.85,0.09 +2019-12-15 19:00:00,84.0,159.68,57.65,39.53,8.02,1.37,19.27,59.85,36.68,3.17,26.0,0.28 +2019-12-15 20:00:00,100.98,173.37,52.17,40.68,8.19,1.36,20.03,49.43,27.92,3.17,23.77,0.6 +2019-12-15 21:00:00,108.56,170.66,48.46,41.14,8.57,1.34,17.74,44.64,23.74,3.33,23.25,0.62 +2019-12-15 22:00:00,110.55,172.48,45.35,39.41,8.81,1.3,17.44,43.15,23.77,3.29,19.03,0.36 +2019-12-15 23:00:00,109.15,173.54,42.89,39.47,8.74,1.19,17.99,39.57,21.21,2.96,17.57,0.39 +2019-12-16 00:00:00,104.59,165.77,40.4,39.25,8.29,1.17,17.71,34.83,16.75,2.84,14.83,0.37 +2019-12-16 01:00:00,103.58,160.18,37.02,38.99,7.93,1.12,18.15,30.95,14.28,2.5,12.7,0.17 +2019-12-16 02:00:00,98.62,153.07,35.12,40.22,7.57,0.92,20.33,27.5,11.36,2.55,12.22,0.22 +2019-12-16 03:00:00,92.29,141.65,33.24,39.14,7.08,1.0,20.39,27.07,12.15,2.32,11.76,0.08 +2019-12-16 04:00:00,86.57,130.39,31.11,38.06,6.6,0.97,21.53,24.93,10.73,2.29,11.31,0.13 +2019-12-16 05:00:00,81.01,123.69,28.67,37.62,6.49,0.97,22.84,23.02,9.97,2.23,10.19,0.14 +2019-12-16 06:00:00,81.86,124.26,29.02,36.55,6.86,0.93,24.33,27.26,14.94,2.57,9.08,0.17 +2019-12-16 07:00:00,84.38,130.77,29.94,36.03,7.16,0.97,24.53,30.88,18.88,1.99,8.99,0.08 +2019-12-16 08:00:00,83.55,132.99,33.23,39.78,7.1,1.03,22.9,33.98,20.54,2.04,9.38,0.04 +2019-12-16 09:00:00,86.32,141.86,34.2,39.63,7.19,1.12,23.06,37.19,23.7,2.2,10.12,0.1 +2019-12-16 10:00:00,87.79,142.06,32.79,40.19,7.22,1.26,22.82,35.58,22.73,2.2,10.69,0.14 +2019-12-16 11:00:00,79.6,122.05,32.47,37.86,6.97,1.11,21.4,38.18,26.14,2.34,11.71,0.06 +2019-12-16 12:00:00,75.45,111.64,36.76,38.49,7.59,1.14,21.42,33.31,31.06,2.52,12.62,0.07 +2019-12-16 13:00:00,75.64,111.59,43.41,38.94,7.02,1.09,22.77,46.84,30.74,2.49,13.7,0.07 +2019-12-16 14:00:00,79.2,116.21,40.3,39.69,7.4,1.04,24.34,42.15,26.42,2.36,13.64,0.07 +2019-12-16 15:00:00,86.01,125.1,33.75,40.61,7.02,1.03,23.97,38.91,23.45,2.22,13.97,0.03 +2019-12-16 16:00:00,87.22,128.26,35.08,40.87,6.97,1.01,23.52,42.75,27.58,2.3,14.61,0.06 +2019-12-16 17:00:00,89.91,131.97,35.94,40.43,6.77,0.98,22.46,42.41,26.94,2.34,15.63,0.07 +2019-12-16 18:00:00,91.16,133.53,38.78,39.89,6.68,1.04,20.74,44.98,28.91,2.33,17.03,0.1 +2019-12-16 19:00:00,88.61,131.31,39.32,39.77,6.98,1.15,20.27,44.14,26.94,2.73,16.9,0.12 +2019-12-16 20:00:00,94.27,138.67,37.86,40.55,7.1,1.08,21.82,42.54,26.07,3.14,17.59,0.06 +2019-12-16 21:00:00,97.9,141.74,36.83,40.67,7.7,1.02,21.9,41.52,25.79,2.57,15.2,0.07 +2019-12-16 22:00:00,93.35,133.31,34.51,39.65,7.26,0.97,22.56,38.43,23.43,2.35,13.4,0.05 +2019-12-16 23:00:00,84.38,122.63,31.69,39.24,7.21,0.92,24.54,34.55,20.7,2.16,12.69,0.05 +2019-12-17 00:00:00,78.48,111.3,29.08,39.03,6.74,0.83,26.68,28.1,14.31,1.92,10.33,0.06 +2019-12-17 01:00:00,72.27,102.53,25.79,38.97,6.92,0.78,27.95,24.78,12.43,1.66,9.12,0.06 +2019-12-17 02:00:00,69.42,97.93,24.8,40.86,6.81,0.73,29.5,23.29,11.45,1.58,7.75,0.05 +2019-12-17 03:00:00,65.26,88.16,24.44,39.58,6.92,0.72,28.33,23.18,12.2,1.48,7.03,0.05 +2019-12-17 04:00:00,61.6,84.26,23.67,40.56,6.53,0.76,28.24,21.87,10.59,1.3,6.58,0.06 +2019-12-17 05:00:00,60.72,84.72,24.03,41.02,6.69,0.75,28.38,23.11,11.99,1.39,7.22,0.04 +2019-12-17 06:00:00,62.45,86.73,24.18,40.5,6.55,0.71,28.59,25.07,14.39,1.34,6.74,0.02 +2019-12-17 07:00:00,66.02,91.46,27.13,40.62,6.58,0.77,25.96,29.67,18.33,1.34,7.09,0.05 +2019-12-17 08:00:00,70.84,98.28,29.16,42.03,6.68,0.9,23.94,35.19,23.69,1.37,6.8,0.05 +2019-12-17 09:00:00,73.98,112.17,30.49,42.8,6.77,1.08,23.96,36.69,24.42,1.66,7.52,0.05 +2019-12-17 10:00:00,80.64,123.08,31.58,44.81,6.52,1.1,23.99,36.61,23.78,1.78,8.21,0.04 +2019-12-17 11:00:00,83.83,127.69,31.34,45.85,6.41,0.95,24.1,35.45,22.66,1.87,8.84,0.05 +2019-12-17 12:00:00,85.73,131.71,30.69,47.04,6.84,0.9,24.57,38.42,24.59,2.18,12.51,0.05 +2019-12-17 13:00:00,89.1,138.68,31.62,48.97,6.57,0.83,25.71,34.57,21.37,2.35,13.46,0.02 +2019-12-17 14:00:00,93.53,145.2,32.29,49.25,7.0,0.88,24.84,35.0,21.31,2.56,15.35,0.1 +2019-12-17 15:00:00,95.85,147.54,33.22,50.36,6.94,0.91,25.36,35.02,20.9,2.87,17.85,0.05 +2019-12-17 16:00:00,96.27,148.61,34.08,51.55,6.99,0.93,24.73,37.57,23.45,2.78,15.15,0.05 +2019-12-17 17:00:00,100.39,155.38,35.24,53.73,7.19,0.89,23.89,36.56,21.42,2.68,17.4,0.06 +2019-12-17 18:00:00,101.74,152.41,37.76,52.45,7.65,0.95,22.67,37.3,20.63,3.01,17.24,0.06 +2019-12-17 19:00:00,109.19,164.99,42.7,55.59,7.49,1.14,19.6,43.16,24.34,3.09,18.59,0.06 +2019-12-17 20:00:00,124.95,187.36,46.61,52.38,7.89,1.53,16.01,57.16,38.68,3.69,21.39,0.03 +2019-12-17 21:00:00,143.27,227.91,44.87,52.37,8.74,2.02,16.7,71.82,57.13,4.68,28.42,0.19 +2019-12-17 22:00:00,164.31,263.8,44.59,57.26,10.06,2.45,18.74,98.88,88.81,5.59,31.82,0.37 +2019-12-17 23:00:00,183.82,293.65,45.4,55.21,10.83,2.27,20.09,99.3,90.05,6.42,36.45,0.52 +2019-12-18 00:00:00,178.55,282.38,47.17,54.89,10.95,1.84,19.47,85.85,72.23,6.12,34.8,0.7 +2019-12-18 01:00:00,154.89,247.04,46.43,54.64,9.0,1.23,16.94,59.14,41.1,4.54,24.36,0.62 +2019-12-18 02:00:00,131.21,205.8,43.93,55.55,7.91,0.99,15.94,45.86,26.39,3.54,15.98,0.18 +2019-12-18 03:00:00,119.96,179.48,38.12,50.78,7.76,0.87,18.25,35.34,17.49,2.9,12.28,0.07 +2019-12-18 04:00:00,114.44,168.11,31.96,51.15,7.11,0.79,25.38,28.35,13.23,2.51,10.8,0.13 +2019-12-18 05:00:00,116.36,165.77,28.41,50.58,6.86,0.74,30.94,24.62,11.15,2.14,8.98,0.11 +2019-12-18 06:00:00,118.04,163.94,29.08,49.84,6.67,0.75,32.63,25.91,12.34,1.94,7.75,0.08 +2019-12-18 07:00:00,121.07,163.64,30.67,49.21,7.05,0.73,32.3,29.7,16.04,1.95,7.41,0.27 +2019-12-18 08:00:00,118.3,162.23,36.46,51.27,7.29,0.75,29.27,37.89,22.14,1.91,7.81,0.07 +2019-12-18 09:00:00,121.29,172.29,37.15,49.81,6.93,0.91,30.19,38.02,21.84,2.17,8.36,0.06 +2019-12-18 10:00:00,123.74,175.22,38.63,48.94,7.02,1.0,31.07,38.63,22.2,2.23,9.11,0.06 +2019-12-18 11:00:00,125.59,181.5,38.76,48.63,6.75,0.93,34.98,36.02,18.26,2.4,10.15,0.04 +2019-12-18 12:00:00,126.01,184.86,43.05,49.03,7.29,0.95,41.09,43.59,22.22,2.52,13.0,0.1 +2019-12-18 13:00:00,124.48,184.24,43.11,49.16,7.33,0.9,48.82,37.39,15.88,2.65,13.68,0.1 +2019-12-18 14:00:00,125.47,187.35,43.43,49.78,7.32,0.91,55.11,36.13,14.79,2.97,15.1,0.07 +2019-12-18 15:00:00,125.33,187.83,44.88,50.52,7.29,0.9,58.14,36.02,13.47,2.72,16.73,0.07 +2019-12-18 16:00:00,123.32,186.71,46.85,50.17,7.16,0.93,58.04,36.09,12.77,2.84,18.73,0.08 +2019-12-18 17:00:00,130.31,195.84,51.04,50.54,7.56,1.01,48.61,38.22,12.61,3.13,20.3,0.08 +2019-12-18 18:00:00,137.3,211.32,58.58,51.72,7.31,1.18,32.55,44.3,15.73,4.01,42.6,0.04 +2019-12-18 19:00:00,152.03,237.27,62.23,51.83,7.5,1.47,22.69,54.05,25.01,4.26,47.59,0.09 +2019-12-18 20:00:00,177.05,272.55,60.23,53.69,8.33,1.96,19.51,64.58,38.87,5.17,52.57,0.08 +2019-12-18 21:00:00,204.63,307.15,58.52,57.57,9.41,2.59,20.72,88.08,67.19,5.81,54.51,0.12 +2019-12-18 22:00:00,239.44,359.05,55.59,58.36,11.27,2.83,22.64,105.27,88.97,6.23,49.33,0.25 +2019-12-18 23:00:00,247.3,375.62,51.67,55.71,12.51,2.54,24.6,101.95,88.3,6.59,46.36,0.26 +2019-12-19 00:00:00,234.76,359.42,47.49,54.61,11.61,2.13,25.12,80.49,64.78,6.78,38.31,0.45 +2019-12-19 01:00:00,222.55,334.6,43.54,56.4,12.3,1.85,25.22,75.56,62.2,6.54,35.62,0.09 +2019-12-19 02:00:00,202.75,308.79,41.52,55.8,11.01,1.46,25.11,72.07,59.43,5.95,34.73,0.08 +2019-12-19 03:00:00,190.99,295.51,38.07,51.6,9.02,1.47,22.5,61.92,49.62,5.05,30.58,0.16 +2019-12-19 04:00:00,174.0,271.2,36.68,50.13,8.42,1.36,27.42,57.03,44.74,4.81,28.19,0.23 +2019-12-19 05:00:00,163.02,257.12,35.18,49.09,7.87,1.28,27.79,56.48,45.17,4.89,28.09,0.13 +2019-12-19 06:00:00,156.15,247.96,34.07,47.72,8.05,1.23,23.98,60.48,50.75,4.39,24.92,0.11 +2019-12-19 07:00:00,155.61,248.01,33.47,46.91,8.25,1.39,26.46,73.21,66.2,4.47,24.04,0.12 +2019-12-19 08:00:00,164.69,268.02,35.7,47.94,9.28,1.65,25.19,86.38,79.63,4.71,24.09,0.14 +2019-12-19 09:00:00,175.18,288.42,43.94,52.99,9.02,1.73,22.21,85.2,73.37,5.01,22.79,0.14 +2019-12-19 10:00:00,192.44,312.77,54.03,55.76,8.99,1.74,21.66,76.83,57.13,5.27,22.06,0.26 +2019-12-19 11:00:00,214.59,342.35,65.08,54.44,9.1,1.74,24.42,72.4,44.89,5.38,23.11,0.38 +2019-12-19 12:00:00,254.94,378.14,75.73,57.61,9.28,1.84,28.0,70.33,35.82,5.68,35.23,0.46 +2019-12-19 13:00:00,293.67,419.72,80.64,57.65,8.37,1.88,34.34,67.23,28.94,6.37,42.5,0.43 +2019-12-19 14:00:00,333.71,466.47,77.54,60.69,8.95,1.85,38.91,60.57,20.9,6.85,42.22,0.26 +2019-12-19 15:00:00,357.97,492.45,73.22,64.29,9.5,1.85,41.49,55.02,18.28,6.11,39.19,0.31 +2019-12-19 16:00:00,357.22,488.31,70.52,67.9,9.67,1.83,42.42,53.53,18.54,6.27,42.63,0.25 +2019-12-19 17:00:00,349.67,478.22,71.85,60.85,9.5,1.87,35.48,55.62,22.82,6.22,35.89,0.46 +2019-12-19 18:00:00,351.75,483.77,70.02,63.76,9.39,2.07,28.44,63.53,31.68,6.38,34.55,0.49 +2019-12-19 19:00:00,345.23,485.3,67.14,64.7,10.01,2.46,25.44,78.02,50.56,6.77,40.4,0.94 +2019-12-19 20:00:00,347.08,504.05,67.32,64.49,10.47,2.73,25.92,90.88,66.34,7.62,44.28,1.25 +2019-12-19 21:00:00,347.25,513.7,63.16,63.7,10.88,2.7,26.99,90.64,68.73,7.78,46.66,1.72 +2019-12-19 22:00:00,340.01,502.38,57.71,65.17,10.72,2.85,26.09,94.74,76.24,8.41,44.46,1.74 +2019-12-19 23:00:00,342.54,496.35,51.65,61.09,11.66,3.08,26.74,101.12,87.64,8.65,43.86,1.85 +2019-12-20 00:00:00,342.62,493.84,50.02,61.7,12.94,3.2,26.78,109.76,98.81,7.71,44.0,1.69 +2019-12-20 01:00:00,341.72,493.27,48.61,54.47,12.52,2.75,27.3,97.2,84.34,8.15,43.65,1.59 +2019-12-20 02:00:00,327.12,458.65,53.52,62.35,11.04,2.38,28.66,89.6,72.17,7.87,41.52,1.86 +2019-12-20 03:00:00,311.41,450.0,58.57,59.09,11.27,2.13,26.32,74.33,49.7,7.76,43.98,1.94 +2019-12-20 04:00:00,294.62,441.96,53.49,58.7,10.2,1.9,24.72,58.65,35.51,7.62,46.07,1.62 +2019-12-20 05:00:00,276.87,411.75,50.85,56.67,9.48,1.71,22.67,49.07,25.96,7.0,41.52,1.45 +2019-12-20 06:00:00,254.27,374.62,48.0,54.63,8.82,1.61,21.78,43.54,21.25,6.28,36.85,1.12 +2019-12-20 07:00:00,233.43,347.3,46.44,52.38,8.69,1.55,20.99,41.29,19.59,5.8,33.39,1.02 +2019-12-20 08:00:00,222.63,339.82,46.5,52.11,8.48,1.56,19.98,42.77,21.57,5.64,31.08,0.89 +2019-12-20 09:00:00,225.07,344.34,48.07,52.26,8.39,1.68,19.72,48.86,28.1,5.85,30.75,0.7 +2019-12-20 10:00:00,233.23,357.67,53.1,53.44,8.36,1.69,21.34,47.84,22.96,5.66,29.3,0.5 +2019-12-20 11:00:00,259.01,383.96,66.14,59.14,8.38,1.73,26.17,57.85,26.89,5.7,29.03,0.56 +2019-12-20 12:00:00,305.61,429.73,69.06,59.4,8.72,1.82,30.87,56.22,23.53,6.42,43.9,0.66 +2019-12-20 13:00:00,349.88,459.48,75.16,60.23,9.08,1.84,40.27,57.34,18.86,6.42,38.64,0.58 +2019-12-20 14:00:00,360.98,476.86,74.14,61.08,9.88,1.81,51.2,53.52,15.33,6.27,39.43,0.37 +2019-12-20 15:00:00,368.05,490.01,74.69,62.16,10.42,1.88,49.66,53.34,15.42,6.36,35.73,0.62 +2019-12-20 16:00:00,372.24,501.44,76.54,57.44,10.01,1.97,41.93,58.94,21.59,6.24,37.55,0.59 +2019-12-20 17:00:00,371.88,511.51,79.45,57.19,10.36,2.01,37.64,61.51,23.13,6.3,42.05,0.58 +2019-12-20 18:00:00,375.15,513.1,78.17,57.6,9.75,2.19,29.31,66.16,29.75,7.28,41.27,0.72 +2019-12-20 19:00:00,363.19,508.22,72.07,56.03,9.46,2.35,24.87,72.28,41.22,7.64,40.12,1.05 +2019-12-20 20:00:00,358.36,503.07,64.49,56.73,9.74,2.67,24.73,79.63,54.54,7.94,42.33,1.41 +2019-12-20 21:00:00,348.87,499.53,58.53,58.68,10.04,3.07,25.79,84.52,65.7,7.65,44.52,1.19 +2019-12-20 22:00:00,345.23,493.29,55.69,65.66,10.41,3.23,26.99,91.53,74.14,7.76,44.82,1.18 +2019-12-20 23:00:00,344.78,494.07,52.51,63.9,11.62,3.2,27.45,97.8,83.51,7.35,42.84,1.31 +2019-12-21 00:00:00,333.99,463.61,50.14,56.67,12.29,3.11,28.9,96.76,83.82,7.71,45.56,1.69 +2019-12-21 01:00:00,319.58,442.68,53.28,58.43,12.16,2.62,28.41,88.69,72.46,8.38,42.87,1.92 +2019-12-21 02:00:00,311.46,435.63,50.24,59.75,10.57,2.34,22.48,75.92,58.96,7.62,36.99,2.28 +2019-12-21 03:00:00,290.58,411.71,46.96,57.8,10.4,1.97,20.59,61.77,43.6,7.18,33.77,1.41 +2019-12-21 04:00:00,267.74,388.54,41.85,56.74,9.22,1.67,20.13,48.76,31.66,6.74,29.99,0.55 +2019-12-21 05:00:00,246.34,357.17,37.66,55.91,8.88,1.54,19.94,40.89,25.15,6.39,28.76,0.38 +2019-12-21 06:00:00,234.13,344.09,36.18,58.78,8.2,1.45,19.15,40.85,26.82,5.82,25.32,0.17 +2019-12-21 07:00:00,224.05,330.23,36.71,56.91,8.29,1.49,18.82,45.8,32.02,5.49,22.98,0.17 +2019-12-21 08:00:00,220.97,325.29,39.72,61.36,8.55,1.51,18.98,51.19,38.19,5.4,22.27,0.34 +2019-12-21 09:00:00,223.38,335.75,43.87,61.5,8.5,1.54,20.07,54.88,38.83,5.42,21.43,0.28 +2019-12-21 10:00:00,236.38,354.99,51.07,59.74,8.55,1.68,20.16,57.07,36.64,5.23,20.48,0.24 +2019-12-21 11:00:00,261.82,380.43,52.78,62.01,8.55,1.63,22.4,55.11,32.67,5.38,21.33,0.24 +2019-12-21 12:00:00,279.54,384.27,52.62,63.9,7.46,1.5,25.77,51.1,27.86,5.7,25.74,0.48 +2019-12-21 13:00:00,272.53,363.3,50.8,64.74,7.33,1.34,29.34,44.16,20.8,5.34,25.42,0.39 +2019-12-21 14:00:00,247.69,328.77,49.12,64.9,7.28,1.31,31.4,39.52,15.9,4.98,25.5,0.15 +2019-12-21 15:00:00,229.08,306.15,50.77,65.38,7.1,1.27,33.97,42.09,19.19,4.87,26.87,0.11 +2019-12-21 16:00:00,208.45,287.72,50.26,63.59,7.17,1.21,35.22,41.51,17.63,4.91,25.76,0.22 +2019-12-21 17:00:00,201.11,277.53,51.91,64.05,7.09,1.19,30.21,44.05,19.95,4.54,26.42,0.2 +2019-12-21 18:00:00,206.85,289.27,60.74,64.88,7.97,1.37,22.12,55.1,27.93,4.82,28.78,0.15 +2019-12-21 19:00:00,218.12,317.81,66.29,69.41,7.85,1.87,19.13,71.22,43.85,5.83,41.72,0.4 +2019-12-21 20:00:00,243.3,358.23,65.91,71.53,8.07,2.14,21.37,78.34,52.87,6.99,51.42,0.59 +2019-12-21 21:00:00,258.79,369.83,62.22,67.54,7.86,1.94,21.85,74.43,49.84,7.11,47.34,1.01 +2019-12-21 22:00:00,241.59,335.66,55.36,64.38,7.61,1.74,18.71,62.08,40.05,6.08,35.64,0.79 +2019-12-21 23:00:00,219.43,305.78,49.42,61.49,7.54,1.57,17.68,55.17,34.44,5.16,30.45,0.56 +2019-12-22 00:00:00,199.78,279.92,44.23,59.23,7.67,1.38,17.64,50.51,31.96,5.16,24.24,0.47 +2019-12-22 01:00:00,180.93,257.86,40.74,57.03,7.79,1.33,18.81,50.12,33.84,4.87,22.37,0.45 +2019-12-22 02:00:00,172.9,250.99,38.31,55.64,7.38,1.27,19.16,47.87,33.14,4.54,21.22,0.18 +2019-12-22 03:00:00,161.0,235.04,36.75,51.63,7.28,1.14,17.95,41.28,26.16,4.52,19.74,0.3 +2019-12-22 04:00:00,150.55,222.17,36.1,58.03,6.4,1.06,17.29,33.33,16.98,4.47,19.89,0.17 +2019-12-22 05:00:00,133.93,200.97,34.62,57.14,5.8,0.96,18.21,28.56,12.64,3.8,17.51,0.16 +2019-12-22 06:00:00,118.66,177.64,34.27,59.8,5.61,0.92,18.64,29.14,13.66,3.5,15.14,0.27 +2019-12-22 07:00:00,109.18,161.0,34.54,59.46,5.84,0.9,18.6,30.46,15.03,3.22,13.08,0.19 +2019-12-22 08:00:00,103.51,153.09,35.05,54.24,6.14,0.9,18.57,34.67,19.58,3.01,11.71,0.08 +2019-12-22 09:00:00,103.92,151.81,35.54,54.94,6.12,0.89,18.79,35.99,20.68,2.98,10.99,0.04 +2019-12-22 10:00:00,105.4,147.85,35.94,52.63,6.63,0.91,19.72,35.54,19.82,2.86,11.44,0.11 +2019-12-22 11:00:00,109.8,148.97,36.61,54.68,6.34,0.98,21.16,36.81,21.18,2.88,11.27,0.09 +2019-12-22 12:00:00,118.78,159.94,37.88,61.99,6.42,1.0,22.56,36.95,20.34,3.07,12.42,0.08 +2019-12-22 13:00:00,126.68,165.37,39.08,58.81,6.78,1.01,25.33,35.84,18.06,3.24,14.49,0.07 +2019-12-22 14:00:00,136.06,176.98,37.39,60.6,7.09,1.06,28.14,32.58,15.26,3.37,14.92,0.08 +2019-12-22 15:00:00,144.05,188.96,36.86,58.38,6.6,1.08,29.02,32.07,15.3,3.45,14.74,0.14 +2019-12-22 16:00:00,150.7,197.12,37.7,58.02,6.24,1.08,29.43,31.89,14.36,3.42,16.07,0.04 +2019-12-22 17:00:00,152.46,197.31,39.51,57.49,6.31,1.12,27.68,33.0,14.7,3.52,16.17,0.07 +2019-12-22 18:00:00,151.99,196.69,45.72,56.66,6.85,1.24,22.33,39.83,19.04,3.88,19.04,0.07 +2019-12-22 19:00:00,167.22,224.03,47.96,57.03,6.73,1.41,19.86,42.2,20.13,4.18,22.32,0.17 +2019-12-22 20:00:00,181.46,245.16,47.56,61.85,7.03,1.5,19.79,41.79,19.91,4.45,21.97,0.18 +2019-12-22 21:00:00,191.19,254.95,45.04,60.55,7.19,1.45,20.55,37.14,15.75,4.4,27.1,0.25 +2019-12-22 22:00:00,185.31,241.4,41.13,58.03,7.02,1.33,22.21,33.98,14.48,4.12,18.93,0.38 +2019-12-22 23:00:00,167.96,214.05,36.39,56.37,6.88,1.17,24.03,29.2,11.93,3.58,14.51,0.33 +2019-12-23 00:00:00,150.58,188.55,34.78,54.9,6.71,1.02,23.46,29.14,12.67,3.14,11.8,0.07 +2019-12-23 01:00:00,137.39,172.94,33.61,54.41,6.67,0.93,23.99,26.48,11.0,2.87,9.73,0.07 +2019-12-23 02:00:00,134.46,167.34,31.18,54.75,6.73,0.89,26.53,24.86,10.06,2.72,9.1,0.09 +2019-12-23 03:00:00,129.25,159.36,28.24,52.0,6.61,0.84,26.02,21.89,8.21,2.67,8.5,0.08 +2019-12-23 04:00:00,127.43,157.08,28.42,52.02,6.18,0.85,26.33,22.57,9.23,2.65,8.58,0.06 +2019-12-23 05:00:00,128.14,157.75,28.74,52.01,5.77,0.85,26.54,22.64,9.3,2.74,8.08,0.06 +2019-12-23 06:00:00,130.48,162.52,29.27,51.04,6.03,0.85,26.09,24.53,10.94,2.8,7.44,0.06 +2019-12-23 07:00:00,135.92,171.8,31.05,49.89,6.08,0.88,25.77,29.08,15.44,2.6,7.54,0.03 +2019-12-23 08:00:00,137.62,180.07,33.98,49.74,6.2,0.96,23.1,33.7,19.31,2.74,8.34,0.05 +2019-12-23 09:00:00,142.59,195.18,37.25,49.62,6.49,1.05,21.57,36.3,20.21,3.0,9.21,0.06 +2019-12-23 10:00:00,152.52,213.69,37.12,49.94,6.48,1.08,21.73,35.09,18.64,3.15,11.49,0.05 +2019-12-23 11:00:00,161.54,220.23,37.55,50.95,6.76,1.13,22.25,38.4,22.47,3.5,13.34,0.06 +2019-12-23 12:00:00,171.69,235.82,38.51,52.25,7.38,1.14,24.05,38.93,22.55,3.63,17.87,0.11 +2019-12-23 13:00:00,178.15,247.95,43.39,54.13,6.76,1.17,27.25,40.4,23.64,3.83,19.72,0.22 +2019-12-23 14:00:00,187.46,263.79,46.38,56.23,7.14,1.21,29.69,43.87,20.93,4.15,22.41,0.21 +2019-12-23 15:00:00,194.51,276.18,49.92,55.37,7.11,1.26,31.09,45.84,21.38,4.4,23.93,0.28 +2019-12-23 16:00:00,202.2,284.83,52.54,55.29,7.08,1.29,30.32,47.34,21.28,4.44,29.28,0.26 +2019-12-23 17:00:00,200.04,294.1,55.47,54.68,7.22,1.37,25.2,52.81,25.92,4.75,28.7,0.34 +2019-12-23 18:00:00,204.04,310.87,55.81,53.09,7.36,1.49,18.33,60.26,34.44,5.13,34.06,0.46 +2019-12-23 19:00:00,207.96,317.95,51.64,55.49,7.57,1.72,17.43,65.87,43.08,5.49,39.67,0.49 +2019-12-23 20:00:00,219.08,340.04,47.58,56.53,7.94,1.92,18.59,70.71,50.64,5.8,58.08,0.7 +2019-12-23 21:00:00,226.26,347.27,43.6,54.88,8.08,2.01,18.83,69.13,51.76,5.96,66.12,0.98 +2019-12-23 22:00:00,222.67,340.62,40.79,52.64,8.29,2.24,18.45,86.13,72.08,6.51,59.07,1.43 +2019-12-23 23:00:00,233.4,358.73,38.98,51.18,9.46,2.49,18.66,100.42,89.47,6.79,58.55,1.57 +2019-12-24 00:00:00,237.05,359.7,36.66,49.78,11.36,2.47,20.87,102.72,93.8,7.07,59.25,1.41 +2019-12-24 01:00:00,229.88,348.38,37.1,49.85,10.79,2.06,25.0,97.79,87.87,7.0,57.42,1.47 +2019-12-24 02:00:00,218.48,336.89,40.19,50.27,9.23,1.68,24.68,70.08,54.28,6.3,47.58,1.42 +2019-12-24 03:00:00,212.43,342.3,42.38,49.03,8.63,1.52,26.81,53.7,34.62,5.62,39.85,0.86 +2019-12-24 04:00:00,213.21,348.78,44.64,52.48,8.48,1.42,26.27,47.72,26.07,5.27,31.86,0.53 +2019-12-24 05:00:00,210.65,345.2,45.68,53.46,8.2,1.3,24.01,41.68,18.81,4.65,28.26,0.23 +2019-12-24 06:00:00,210.71,337.96,44.53,53.54,6.87,1.26,23.0,39.3,16.56,4.52,26.08,0.22 +2019-12-24 07:00:00,212.29,340.46,43.44,51.55,7.0,1.26,23.13,39.96,17.81,4.17,23.67,0.23 +2019-12-24 08:00:00,215.88,346.34,42.19,50.35,7.35,1.28,22.16,41.14,19.87,4.02,21.55,0.22 +2019-12-24 09:00:00,216.06,337.52,40.2,49.73,7.03,1.27,22.17,41.8,21.51,3.88,19.33,0.14 +2019-12-24 10:00:00,216.52,336.05,41.83,49.19,7.42,1.33,23.85,45.94,25.11,3.91,18.82,0.12 +2019-12-24 11:00:00,235.23,356.0,49.78,52.83,7.28,1.34,24.67,49.77,25.28,4.15,19.95,0.2 +2019-12-24 12:00:00,270.22,385.67,56.28,53.6,8.11,1.41,29.25,51.02,22.92,4.24,21.53,0.13 +2019-12-24 13:00:00,289.0,414.17,67.38,55.84,8.29,1.47,35.61,56.24,22.49,4.89,35.89,0.22 +2019-12-24 14:00:00,295.11,424.24,73.71,55.82,8.27,1.54,43.02,57.99,19.19,5.25,32.62,0.38 +2019-12-24 15:00:00,304.04,439.21,77.6,55.46,8.46,1.58,47.9,57.62,16.87,5.73,27.95,0.69 +2019-12-24 16:00:00,312.36,456.53,80.99,54.38,8.36,1.59,46.01,58.16,14.85,5.76,33.33,0.91 +2019-12-24 17:00:00,308.24,458.38,78.89,54.14,8.3,1.62,38.84,56.22,15.04,6.43,39.47,0.59 +2019-12-24 18:00:00,299.49,454.43,79.51,53.5,8.44,1.84,27.0,67.18,27.18,6.63,43.29,0.75 +2019-12-24 19:00:00,304.17,469.63,79.03,54.55,9.2,2.18,22.82,83.2,46.21,6.52,51.55,1.02 +2019-12-24 20:00:00,313.82,487.89,71.62,55.64,9.91,2.55,23.21,93.33,62.29,7.56,60.15,1.67 +2019-12-24 21:00:00,321.5,498.13,67.18,57.24,10.38,2.8,24.81,98.26,71.7,8.02,63.04,1.73 +2019-12-24 22:00:00,327.74,499.82,62.18,60.41,10.3,2.77,26.09,98.92,75.62,8.46,62.79,2.14 +2019-12-24 23:00:00,330.42,501.06,58.33,56.44,11.23,2.65,24.79,97.28,76.58,7.84,53.68,2.32 +2019-12-25 00:00:00,323.07,494.57,54.03,51.05,12.01,2.39,24.44,89.11,68.76,7.55,46.77,1.89 +2019-12-25 01:00:00,302.76,461.4,48.75,51.19,11.33,2.02,24.02,75.7,56.44,6.82,39.39,1.34 +2019-12-25 02:00:00,254.92,393.01,42.74,48.9,9.82,1.52,21.61,52.94,33.4,6.13,31.8,0.8 +2019-12-25 03:00:00,177.95,286.86,36.4,45.84,8.15,1.21,17.24,34.71,16.57,4.4,23.09,0.3 +2019-12-25 04:00:00,118.56,204.22,34.82,46.33,6.94,1.07,16.81,30.49,13.7,3.39,18.32,0.13 +2019-12-25 05:00:00,105.47,184.8,34.45,46.09,6.17,0.97,17.28,28.12,11.89,2.82,16.29,0.11 +2019-12-25 06:00:00,103.21,179.17,33.97,45.77,5.59,0.82,18.16,28.67,11.85,2.53,14.4,0.1 +2019-12-25 07:00:00,106.04,179.74,32.82,45.21,5.89,0.82,18.38,28.9,12.34,2.29,12.24,0.09 +2019-12-25 08:00:00,107.35,172.31,33.92,44.37,6.04,0.9,17.72,31.02,18.09,2.31,11.27,0.16 +2019-12-25 09:00:00,109.42,171.5,34.36,44.38,6.05,0.97,18.21,30.1,14.63,2.37,11.71,0.1 +2019-12-25 10:00:00,112.89,174.02,35.09,44.49,5.77,1.01,18.8,32.62,15.84,2.52,11.57,0.11 +2019-12-25 11:00:00,129.16,197.66,36.39,46.08,6.57,1.02,19.63,35.54,18.82,2.69,12.47,0.11 +2019-12-25 12:00:00,145.41,219.3,35.08,47.4,6.42,1.09,23.03,32.81,15.45,3.39,15.58,0.12 +2019-12-25 13:00:00,151.78,227.49,36.96,48.76,6.46,1.04,25.79,33.13,18.62,3.35,18.77,0.07 +2019-12-25 14:00:00,150.83,224.42,37.69,47.13,6.57,1.01,27.85,33.18,14.01,3.4,22.74,0.07 +2019-12-25 15:00:00,150.01,223.84,39.13,47.98,5.86,0.99,29.32,32.9,13.21,3.5,21.71,0.08 +2019-12-25 16:00:00,155.61,233.69,40.63,47.94,5.95,1.03,29.27,35.17,14.67,3.5,22.12,0.22 +2019-12-25 17:00:00,166.02,250.71,43.16,48.66,6.2,1.04,25.61,36.49,15.56,3.53,23.81,0.04 +2019-12-25 18:00:00,174.39,268.29,45.58,52.78,6.5,1.12,20.8,38.72,16.42,3.91,27.28,0.08 +2019-12-25 19:00:00,182.13,278.14,44.26,50.86,6.26,1.18,20.17,40.25,18.84,3.99,32.63,0.15 +2019-12-25 20:00:00,185.04,278.54,44.74,54.89,6.25,1.27,18.45,44.33,22.64,4.12,25.93,0.19 +2019-12-25 21:00:00,191.96,286.7,43.09,55.05,6.51,1.38,17.4,49.12,29.59,4.36,27.08,0.19 +2019-12-25 22:00:00,196.41,296.8,43.21,51.76,6.83,1.52,18.21,54.09,35.76,4.75,27.44,0.24 +2019-12-25 23:00:00,200.72,311.53,43.3,51.49,6.84,1.43,18.89,50.88,30.57,4.79,25.96,0.23 +2019-12-26 00:00:00,186.48,296.45,40.45,50.94,6.42,1.21,20.71,40.32,21.26,4.13,21.55,0.08 +2019-12-26 01:00:00,173.15,274.03,36.91,50.33,6.81,1.04,21.74,32.65,14.48,3.43,16.99,0.12 +2019-12-26 02:00:00,175.15,269.12,35.33,51.7,6.25,0.97,24.06,28.91,10.81,3.14,14.44,0.07 +2019-12-26 03:00:00,177.55,270.25,33.95,49.22,6.0,0.94,24.08,27.24,9.44,2.99,15.1,0.07 +2019-12-26 04:00:00,177.57,270.34,33.26,51.25,5.6,0.89,25.21,26.37,8.98,2.81,14.72,0.08 +2019-12-26 05:00:00,169.44,259.34,32.94,51.31,5.23,0.87,25.1,25.79,8.88,2.62,11.69,0.07 +2019-12-26 06:00:00,161.46,249.12,32.92,53.43,5.41,0.86,25.0,27.55,10.21,2.54,10.64,0.06 +2019-12-26 07:00:00,160.74,245.98,33.85,48.64,5.65,0.89,25.29,27.89,10.68,2.43,10.38,0.03 +2019-12-26 08:00:00,157.62,239.15,36.19,50.57,5.95,0.91,24.62,33.06,17.21,2.44,9.72,0.05 +2019-12-26 09:00:00,161.08,251.12,38.32,50.79,6.26,0.95,24.28,33.06,14.96,2.66,10.63,0.05 +2019-12-26 10:00:00,172.8,269.32,40.37,47.9,6.48,1.02,23.48,37.33,19.05,2.72,10.79,0.06 +2019-12-26 11:00:00,182.86,281.63,41.48,49.58,6.74,1.06,24.08,36.65,16.76,2.9,13.08,0.01 +2019-12-26 12:00:00,195.05,291.7,41.88,50.61,7.19,1.07,27.1,38.6,20.17,3.24,15.21,0.0 +2019-12-26 13:00:00,200.41,294.67,43.57,50.89,6.7,1.04,30.81,38.28,16.53,3.48,17.66,0.02 +2019-12-26 14:00:00,204.8,304.79,49.51,53.39,6.64,1.08,34.77,41.54,14.89,3.64,20.12,0.0 +2019-12-26 15:00:00,206.51,307.87,50.48,52.87,9.47,1.18,37.78,41.27,15.44,3.7,20.66,0.0 +2019-12-26 16:00:00,205.71,303.14,54.6,52.01,6.9,1.11,36.86,45.11,17.54,3.67,22.34,0.29 +2019-12-26 17:00:00,207.3,312.46,57.3,52.3,7.28,1.13,33.36,45.09,17.75,3.82,23.8,0.52 +2019-12-26 18:00:00,217.31,333.81,65.95,52.38,7.55,1.32,23.91,55.63,23.06,4.25,24.97,0.4 +2019-12-26 19:00:00,240.02,378.58,63.23,57.13,8.28,1.61,21.92,61.77,31.16,5.23,44.77,0.65 +2019-12-26 20:00:00,257.84,400.81,59.9,57.89,8.7,1.76,21.9,64.37,36.38,5.82,58.22,0.89 +2019-12-26 21:00:00,252.69,386.53,55.59,54.87,8.77,1.8,20.86,61.16,34.95,5.89,53.13,1.12 +2019-12-26 22:00:00,246.88,364.93,53.6,52.56,9.02,1.69,21.56,59.84,35.01,5.72,44.64,0.74 +2019-12-26 23:00:00,236.92,341.17,50.35,51.43,8.56,1.6,19.05,59.34,36.5,5.4,34.86,0.69 +2019-12-27 00:00:00,226.99,327.33,48.01,49.0,8.44,1.48,18.07,59.88,37.84,5.09,33.02,0.39 +2019-12-27 01:00:00,214.8,321.48,45.95,49.43,8.3,1.3,18.24,54.48,32.58,4.77,26.93,0.33 +2019-12-27 02:00:00,206.17,320.88,45.13,48.41,8.28,1.15,20.0,52.98,32.39,4.59,32.86,0.14 +2019-12-27 03:00:00,197.67,319.43,40.1,44.52,7.26,1.06,19.08,46.71,27.24,4.21,29.11,0.19 +2019-12-27 04:00:00,174.95,292.02,40.13,45.52,6.72,0.93,19.63,39.63,19.16,4.14,32.59,0.25 +2019-12-27 05:00:00,159.34,276.31,39.07,46.47,6.27,0.88,21.91,33.13,12.92,3.41,28.59,0.22 +2019-12-27 06:00:00,161.21,268.91,39.42,49.48,6.15,0.84,22.87,31.87,12.18,2.93,28.5,0.06 +2019-12-27 07:00:00,167.38,269.36,39.15,49.17,5.99,0.82,23.05,32.61,13.01,2.83,28.11,0.03 +2019-12-27 08:00:00,170.51,270.52,44.21,48.26,6.33,0.92,20.15,38.57,17.4,2.84,27.77,0.24 +2019-12-27 09:00:00,182.67,293.87,44.45,48.58,6.62,0.94,21.29,38.79,17.06,2.99,29.41,0.08 +2019-12-27 10:00:00,200.8,313.36,44.69,45.55,6.75,0.99,22.59,41.04,19.02,3.02,28.17,0.08 +2019-12-27 11:00:00,224.34,338.91,48.0,49.7,7.16,1.06,25.23,43.24,19.1,3.15,27.68,0.1 +2019-12-27 12:00:00,236.62,351.08,52.84,54.3,7.67,1.13,30.17,44.53,18.9,3.68,26.78,0.04 +2019-12-27 13:00:00,249.81,370.84,59.74,54.94,6.92,1.18,36.84,48.62,16.86,4.12,24.51,0.03 +2019-12-27 14:00:00,259.54,388.52,63.71,57.5,7.18,1.26,41.9,47.79,16.67,4.57,25.36,0.16 +2019-12-27 15:00:00,269.32,403.14,65.96,58.55,7.59,1.27,48.41,49.73,15.3,4.69,26.23,0.12 +2019-12-27 16:00:00,279.78,419.95,71.22,60.19,7.92,1.34,48.81,51.27,15.99,4.86,27.3,0.16 +2019-12-27 17:00:00,287.86,439.56,72.33,56.89,8.29,1.37,42.17,53.4,17.26,4.88,30.57,0.18 +2019-12-27 18:00:00,291.97,447.72,75.11,56.03,8.3,1.54,29.27,57.94,21.43,5.15,33.08,0.26 +2019-12-27 19:00:00,287.93,443.53,74.87,57.21,8.56,1.9,22.37,71.62,34.07,5.88,45.59,0.21 +2019-12-27 20:00:00,299.83,465.97,70.0,59.36,9.83,2.39,22.27,85.22,53.01,6.67,55.51,0.3 +2019-12-27 21:00:00,332.53,513.42,67.68,59.22,10.61,2.54,27.79,100.38,71.64,7.39,51.64,0.42 +2019-12-27 22:00:00,340.58,525.56,61.22,57.45,10.72,2.5,30.02,94.05,67.96,7.47,43.97,0.53 +2019-12-27 23:00:00,339.08,533.16,57.41,57.73,11.17,2.55,29.1,101.42,78.96,7.63,45.32,0.32 +2019-12-28 00:00:00,335.22,528.75,54.96,55.54,12.46,2.52,28.03,107.11,87.36,7.84,40.89,0.43 +2019-12-28 01:00:00,325.09,508.57,52.08,54.88,12.68,2.36,26.55,107.94,94.49,7.21,37.93,0.87 +2019-12-28 02:00:00,303.17,491.55,52.66,52.48,13.16,2.27,28.41,104.14,97.57,7.41,37.42,0.6 +2019-12-28 03:00:00,286.12,468.64,52.48,48.47,12.67,2.22,25.6,118.23,103.12,7.37,37.13,0.72 +2019-12-28 04:00:00,271.2,432.4,47.17,49.81,12.29,2.17,25.43,114.14,101.09,7.72,33.73,0.64 +2019-12-28 05:00:00,264.24,414.47,44.59,48.29,11.38,2.14,24.36,112.81,99.15,7.93,33.83,0.54 +2019-12-28 06:00:00,261.29,401.94,44.73,48.03,11.02,2.03,25.14,103.58,89.57,7.51,33.65,0.67 +2019-12-28 07:00:00,239.02,372.16,48.46,45.85,10.33,1.98,25.14,100.89,84.38,7.24,34.63,0.67 +2019-12-28 08:00:00,231.55,367.49,51.4,46.69,10.34,1.97,22.58,98.1,83.72,7.49,36.41,0.53 +2019-12-28 09:00:00,232.69,380.77,54.46,47.37,9.47,1.75,20.81,85.25,64.61,7.08,35.61,0.56 +2019-12-28 10:00:00,213.09,363.61,53.85,48.85,9.61,1.53,19.47,67.5,42.1,6.08,30.71,0.59 +2019-12-28 11:00:00,202.59,336.25,53.36,48.51,8.31,1.37,20.96,55.05,30.26,5.44,28.37,0.12 +2019-12-28 12:00:00,199.64,324.16,56.74,47.32,7.78,1.33,21.84,55.63,26.36,5.15,25.23,0.02 +2019-12-28 13:00:00,218.25,333.45,55.43,50.11,7.79,1.31,26.74,48.72,19.96,5.18,26.45,0.04 +2019-12-28 14:00:00,249.39,353.31,58.63,50.04,7.85,1.33,33.57,48.4,18.32,5.52,29.14,0.18 +2019-12-28 15:00:00,264.26,372.48,62.73,50.7,7.77,1.33,38.21,49.38,16.31,5.55,31.87,0.27 +2019-12-28 16:00:00,266.96,382.62,65.09,49.44,8.07,1.33,38.0,48.33,14.77,5.49,38.18,0.04 +2019-12-28 17:00:00,266.88,391.28,59.89,51.05,8.41,1.31,32.81,45.55,13.5,5.65,44.91,0.14 +2019-12-28 18:00:00,265.52,402.74,59.29,48.31,8.61,1.52,24.36,49.14,18.53,5.55,45.08,0.06 +2019-12-28 19:00:00,283.07,435.48,63.66,52.83,8.99,1.9,26.14,66.25,34.91,6.11,49.94,0.01 +2019-12-28 20:00:00,320.95,486.06,63.69,54.03,10.19,2.41,30.12,80.51,51.35,6.77,57.98,0.26 +2019-12-28 21:00:00,357.56,534.38,61.75,53.9,11.39,2.88,35.29,100.89,75.53,7.31,62.49,0.35 +2019-12-28 22:00:00,377.96,574.35,65.47,53.95,12.57,3.01,36.37,116.48,90.72,7.97,61.18,0.58 +2019-12-28 23:00:00,378.7,570.0,60.9,54.84,13.0,3.07,34.14,119.21,85.43,8.13,48.57,0.77 +2019-12-29 00:00:00,374.84,560.71,54.27,50.07,16.9,2.76,34.27,105.95,87.2,7.94,42.39,0.84 +2019-12-29 01:00:00,335.46,502.49,50.85,48.25,12.33,2.03,32.43,76.74,55.16,7.83,40.34,0.55 +2019-12-29 02:00:00,292.5,479.03,48.32,47.96,11.37,1.68,29.03,58.06,34.87,6.98,33.85,0.2 +2019-12-29 03:00:00,275.04,477.79,51.33,46.98,10.21,1.54,25.84,49.7,23.56,6.26,27.17,0.09 +2019-12-29 04:00:00,267.34,466.62,49.95,46.84,9.4,1.41,27.42,45.93,20.1,5.74,25.67,0.06 +2019-12-29 05:00:00,252.36,441.4,50.92,46.69,8.37,1.35,26.42,44.1,17.83,5.42,25.27,0.08 +2019-12-29 06:00:00,249.2,427.14,53.39,49.31,7.91,1.39,27.17,45.07,16.77,5.19,22.76,0.0 +2019-12-29 07:00:00,246.86,412.95,50.77,49.19,7.62,1.26,27.75,45.27,19.37,5.12,22.21,0.01 +2019-12-29 08:00:00,247.21,404.15,49.58,48.24,7.35,1.29,26.35,45.73,20.88,5.07,21.59,0.09 +2019-12-29 09:00:00,254.39,408.49,51.69,47.27,8.13,1.29,24.72,47.8,21.66,4.91,21.18,0.08 +2019-12-29 10:00:00,269.16,418.1,53.74,48.15,8.24,1.35,25.38,48.43,20.66,5.0,21.3,0.12 +2019-12-29 11:00:00,302.48,442.21,54.73,46.91,8.39,1.47,29.56,49.46,21.54,5.07,22.78,0.07 +2019-12-29 12:00:00,339.57,482.78,61.13,49.83,9.19,1.54,36.52,52.22,19.8,5.52,26.35,0.06 +2019-12-29 13:00:00,360.57,512.06,66.18,51.49,9.23,1.51,47.35,51.79,14.54,6.02,29.12,0.06 +2019-12-29 14:00:00,367.98,515.89,65.08,51.38,9.53,1.52,60.1,49.04,11.59,5.61,30.9,0.06 +2019-12-29 15:00:00,361.62,513.83,59.2,51.0,10.14,1.52,69.68,42.72,9.08,5.35,31.71,0.11 +2019-12-29 16:00:00,351.23,508.5,57.55,50.16,11.05,1.47,70.89,42.74,11.08,5.22,33.21,0.1 +2019-12-29 17:00:00,334.68,492.66,60.68,48.9,10.01,1.52,53.5,47.29,15.48,5.38,38.67,0.11 +2019-12-29 18:00:00,329.59,496.75,71.96,49.48,9.51,1.93,33.51,62.51,25.6,5.86,37.28,0.12 +2019-12-29 19:00:00,357.98,546.72,73.05,51.08,10.56,2.44,27.43,76.21,40.76,7.24,45.54,0.52 +2019-12-29 20:00:00,397.09,598.62,68.93,53.24,11.7,2.87,26.79,87.96,55.42,8.08,47.51,0.89 +2019-12-29 21:00:00,420.27,619.7,64.92,51.99,12.2,3.18,26.05,99.98,70.87,8.48,47.15,1.14 +2019-12-29 22:00:00,425.12,629.04,60.13,53.24,12.62,3.35,26.4,106.02,80.83,8.47,50.4,1.4 +2019-12-29 23:00:00,430.45,645.97,57.93,52.88,14.03,2.88,28.01,95.49,70.92,8.95,47.67,1.38 +2019-12-30 00:00:00,406.48,631.95,53.8,50.85,13.56,2.67,29.52,101.45,79.02,8.67,49.74,0.66 +2019-12-30 01:00:00,389.41,595.1,49.42,49.01,13.29,2.8,30.02,113.14,94.92,8.27,42.73,0.58 +2019-12-30 02:00:00,373.33,558.05,46.71,47.23,13.77,2.75,29.69,113.21,98.25,8.26,46.75,0.76 +2019-12-30 03:00:00,354.7,516.3,44.91,44.81,12.87,2.65,28.27,110.92,96.44,8.49,51.15,0.66 +2019-12-30 04:00:00,337.78,487.87,43.86,44.76,12.3,2.63,27.71,104.86,91.18,8.16,46.81,0.7 +2019-12-30 05:00:00,324.69,462.59,41.98,44.96,11.77,2.48,26.95,97.82,84.59,8.12,47.69,1.07 +2019-12-30 06:00:00,297.34,416.72,42.65,43.82,10.71,2.25,23.0,86.83,70.32,8.3,47.25,1.12 +2019-12-30 07:00:00,252.99,346.77,41.79,41.63,9.56,1.99,19.07,76.84,60.02,7.7,45.71,0.91 +2019-12-30 08:00:00,216.22,285.88,41.34,41.12,9.73,1.88,16.41,73.18,56.33,7.4,44.94,0.8 +2019-12-30 09:00:00,208.76,273.77,41.84,41.53,10.02,1.89,16.98,77.83,62.39,7.43,44.17,0.75 +2019-12-30 10:00:00,214.24,299.76,45.86,42.19,10.57,2.02,20.75,78.92,63.61,7.53,46.71,0.61 +2019-12-30 11:00:00,245.5,377.67,54.65,43.66,9.9,2.14,24.1,87.87,65.87,8.03,48.09,0.37 +2019-12-30 12:00:00,294.5,480.15,67.22,49.53,10.6,2.38,26.2,85.93,57.29,8.24,48.02,0.24 +2019-12-30 13:00:00,340.89,554.13,81.29,53.79,11.8,2.53,27.6,87.51,55.35,8.62,58.47,0.68 +2019-12-30 14:00:00,391.91,601.22,83.98,58.63,11.44,2.48,30.69,85.32,44.3,8.65,53.48,0.99 +2019-12-30 15:00:00,413.27,602.61,81.05,61.21,11.34,2.41,33.78,73.91,34.24,8.83,53.91,0.84 +2019-12-30 16:00:00,427.72,585.67,75.72,62.08,11.56,2.25,36.03,67.73,29.14,8.24,56.68,0.81 +2019-12-30 17:00:00,440.83,594.72,74.31,64.96,10.27,2.23,34.1,64.7,26.07,8.48,51.05,1.13 +2019-12-30 18:00:00,430.08,578.91,65.8,61.75,10.59,2.27,30.88,60.68,27.41,8.33,51.37,1.16 +2019-12-30 19:00:00,393.43,558.56,58.35,59.46,10.42,2.11,25.92,55.41,26.69,7.73,49.05,1.03 +2019-12-30 20:00:00,357.43,513.3,53.56,57.22,10.52,1.91,26.09,52.62,26.47,7.68,47.1,0.8 +2019-12-30 21:00:00,326.83,485.48,51.33,53.3,11.2,1.8,24.95,50.48,25.54,7.4,25.23,0.38 +2019-12-30 22:00:00,296.26,453.26,48.17,51.03,10.53,1.7,23.59,46.59,23.07,7.03,39.06,0.18 +2019-12-30 23:00:00,267.62,412.05,44.97,49.36,9.33,1.5,22.35,43.1,20.88,6.38,35.69,0.05 +2019-12-31 00:00:00,240.59,364.75,40.64,47.6,8.63,1.26,21.14,38.24,18.67,5.65,32.63,0.01 +2019-12-31 01:00:00,212.59,317.06,36.72,46.05,8.49,1.22,20.22,33.53,15.88,5.28,30.61,0.09 +2019-12-31 02:00:00,185.99,261.49,33.23,44.94,8.31,1.13,20.73,29.14,13.11,4.7,29.26,0.0 +2019-12-31 03:00:00,169.4,235.89,30.23,41.62,8.2,1.01,19.3,25.33,10.53,4.17,27.76,0.04 +2019-12-31 04:00:00,159.99,222.2,29.43,41.67,7.73,0.99,19.2,24.23,10.09,3.72,27.3,0.0 +2019-12-31 05:00:00,155.21,216.89,29.01,41.75,7.05,0.98,20.05,24.22,10.06,3.59,24.34,0.0 +2019-12-31 06:00:00,159.14,219.48,30.01,42.29,6.57,0.92,18.56,24.82,10.71,3.44,23.96,0.04 +2019-12-31 07:00:00,165.62,228.74,29.84,42.29,7.3,0.91,18.62,26.04,12.45,3.43,24.44,0.0 +2019-12-31 08:00:00,172.47,241.73,31.52,42.5,7.23,0.98,19.66,28.53,13.61,3.39,23.05,0.0 +2019-12-31 09:00:00,188.24,258.91,33.11,42.0,7.33,0.98,20.38,30.74,14.78,3.35,22.05,0.0 +2019-12-31 10:00:00,207.01,287.89,34.83,42.17,7.59,1.06,22.55,33.97,17.22,3.56,21.48,0.01 +2019-12-31 11:00:00,219.42,310.14,36.23,42.8,8.16,1.12,26.12,33.45,14.94,3.58,22.41,0.0 +2019-12-31 12:00:00,225.79,323.07,39.58,43.94,8.78,1.22,31.85,33.85,13.41,3.78,23.59,0.0 +2019-12-31 13:00:00,233.65,323.86,43.56,44.73,9.25,1.16,39.52,34.46,11.18,3.9,28.3,0.02 +2019-12-31 14:00:00,231.02,329.97,46.22,47.73,11.08,1.13,46.17,34.9,10.24,3.99,32.92,0.0 +2019-12-31 15:00:00,219.72,324.12,49.38,47.9,14.45,1.09,47.29,36.55,10.21,3.88,34.47,0.02 +2019-12-31 16:00:00,204.77,312.25,53.12,46.64,14.65,1.07,44.79,38.75,9.88,3.77,33.56,0.0 +2019-12-31 17:00:00,192.12,306.86,56.57,45.31,12.11,1.14,37.43,41.23,9.77,3.61,22.59,0.02 +2019-12-31 18:00:00,195.39,308.73,68.55,46.34,10.28,1.69,22.05,69.48,30.62,3.83,41.43,0.01 +2019-12-31 19:00:00,249.89,392.89,76.26,51.18,11.05,3.0,21.0,112.81,79.7,5.37,51.23,0.02 +2019-12-31 20:00:00,345.79,488.6,78.97,59.84,15.46,4.7,26.89,165.88,138.83,7.13,64.68,0.27 +2019-12-31 21:00:00,461.95,603.03,78.71,64.04,19.44,5.08,35.15,185.08,164.42,8.21,77.56,0.61 +2019-12-31 22:00:00,531.85,628.67,79.51,68.22,22.77,4.73,37.18,207.88,204.6,9.34,98.28,1.13 +2019-12-31 23:00:00,565.18,609.19,74.76,73.64,22.82,4.55,37.86,236.57,222.84,10.79,103.8,2.95 +2020-01-01 00:00:00,600.85,693.07,73.74,76.68,22.49,5.1,38.95,218.45,203.35,11.72,98.44,4.26 +2020-01-01 01:00:00,611.38,703.92,69.02,72.12,20.4,5.04,40.78,196.76,176.57,10.58,90.93,6.5 +2020-01-01 02:00:00,552.53,684.58,61.21,63.24,19.83,4.26,37.88,169.22,148.07,10.61,79.35,3.85 +2020-01-01 03:00:00,495.55,640.05,56.21,56.68,17.42,4.03,31.76,163.24,145.45,9.61,67.92,1.65 +2020-01-01 04:00:00,448.77,599.51,53.69,53.75,16.06,4.01,33.85,160.95,149.83,9.75,64.92,0.87 +2020-01-01 05:00:00,435.38,574.78,52.49,51.42,16.78,3.79,31.9,152.71,154.18,9.17,58.99,0.62 +2020-01-01 06:00:00,421.77,552.18,52.88,50.34,16.06,3.82,33.37,165.1,143.22,9.87,54.91,0.31 +2020-01-01 07:00:00,413.22,539.94,50.13,49.83,15.55,3.72,36.99,168.49,159.47,10.24,53.72,0.72 +2020-01-01 08:00:00,426.15,556.36,56.89,54.23,18.61,4.06,41.17,178.12,164.65,10.03,54.6,0.92 +2020-01-01 09:00:00,469.18,604.94,68.64,58.78,17.82,3.95,50.81,183.91,156.12,10.43,54.26,0.7 +2020-01-01 10:00:00,473.72,600.98,97.65,59.31,19.83,2.8,49.94,143.65,100.54,9.99,48.89,0.84 +2020-01-01 11:00:00,389.62,523.0,85.2,55.4,18.2,1.82,39.74,87.26,43.3,7.9,37.53,0.59 +2020-01-01 12:00:00,277.94,373.83,61.75,52.82,16.9,1.4,42.31,58.27,24.22,6.47,29.69,0.31 +2020-01-01 13:00:00,198.91,276.65,55.99,49.53,16.14,1.08,50.05,50.9,16.89,4.99,29.48,0.06 +2020-01-01 14:00:00,158.69,239.57,49.9,48.84,18.24,0.93,51.44,41.8,12.68,4.27,21.71,0.05 +2020-01-01 15:00:00,150.67,215.01,45.58,47.68,20.49,0.86,52.14,35.51,10.98,3.83,38.31,0.01 +2020-01-01 16:00:00,133.77,209.8,46.23,46.98,18.2,0.89,48.98,34.9,9.73,3.46,34.51,0.02 +2020-01-01 17:00:00,129.49,204.77,54.71,46.25,15.11,1.01,39.74,40.63,11.26,3.8,36.46,0.01 +2020-01-01 18:00:00,139.53,231.3,69.47,47.2,12.92,1.69,24.79,67.18,31.52,4.73,46.19,0.09 +2020-01-01 19:00:00,199.2,315.9,76.7,50.61,13.68,2.97,22.62,113.49,77.69,6.51,63.01,0.19 +2020-01-01 20:00:00,310.49,439.34,74.96,58.3,17.35,4.2,26.99,157.89,118.27,8.57,73.63,0.37 +2020-01-01 21:00:00,414.23,541.52,75.25,63.37,22.53,4.26,36.61,195.51,160.44,11.08,92.05,1.16 +2020-01-01 22:00:00,502.81,628.95,76.34,73.18,26.78,4.35,43.56,218.01,199.63,12.06,114.79,3.37 +2020-01-01 23:00:00,577.54,662.98,75.59,77.87,26.48,5.46,43.44,238.12,210.69,14.36,114.76,5.56 +2020-01-02 00:00:00,572.39,702.37,72.85,78.57,26.86,5.95,44.65,234.45,215.83,14.36,113.96,8.4 +2020-01-02 01:00:00,549.73,698.94,69.45,75.34,25.04,5.85,44.61,211.9,206.06,13.98,105.13,8.13 +2020-01-02 02:00:00,504.66,623.7,63.55,69.28,25.24,5.24,42.96,198.63,184.64,14.0,102.58,5.79 +2020-01-02 03:00:00,471.33,576.63,57.9,62.89,20.91,4.77,40.03,172.33,168.73,13.72,95.91,3.13 +2020-01-02 04:00:00,436.94,545.4,55.27,60.32,20.75,4.46,40.53,194.39,151.61,13.14,95.12,1.62 +2020-01-02 05:00:00,428.97,524.52,51.69,56.55,19.56,4.13,41.41,185.05,176.54,12.18,90.37,1.3 +2020-01-02 06:00:00,409.31,499.52,47.88,54.25,18.48,3.73,33.93,165.7,170.22,11.8,85.65,1.85 +2020-01-02 07:00:00,379.33,464.48,48.71,51.15,17.1,3.23,33.58,156.67,157.47,10.9,77.15,1.85 +2020-01-02 08:00:00,357.28,452.61,49.06,50.62,16.72,3.24,28.74,166.94,157.41,10.42,70.81,1.48 +2020-01-02 09:00:00,374.33,472.8,64.36,55.77,17.65,3.41,29.29,185.41,157.79,10.59,70.36,1.14 +2020-01-02 10:00:00,383.52,511.78,99.14,59.44,20.99,2.71,34.09,153.35,111.5,10.36,61.73,1.14 +2020-01-02 11:00:00,342.68,477.12,96.51,59.54,21.53,2.25,38.24,108.07,58.14,8.53,53.78,0.74 +2020-01-02 12:00:00,289.77,421.73,73.89,58.61,18.03,1.74,33.35,69.97,31.93,7.25,53.03,0.62 +2020-01-02 13:00:00,212.51,311.68,49.38,54.49,16.39,1.16,41.88,43.43,16.63,5.44,34.57,0.41 +2020-01-02 14:00:00,126.1,198.28,43.39,51.5,18.41,1.08,45.94,36.35,13.26,4.35,26.18,0.23 +2020-01-02 15:00:00,107.48,176.32,42.36,50.94,18.29,0.95,51.9,32.98,10.59,3.88,29.06,0.13 +2020-01-02 16:00:00,98.18,169.89,43.56,47.32,18.2,0.89,47.59,32.82,9.94,3.64,25.47,0.01 +2020-01-02 17:00:00,88.68,170.12,49.82,45.49,15.76,1.04,36.9,37.26,11.37,3.7,25.3,0.01 +2020-01-02 18:00:00,104.82,206.18,69.18,46.48,15.18,1.86,22.53,79.51,47.38,4.63,38.19,0.14 +2020-01-02 19:00:00,159.04,313.16,77.08,49.57,14.9,3.14,19.49,140.41,110.93,6.61,59.2,0.3 +2020-01-02 20:00:00,242.04,385.72,79.25,58.16,18.73,4.66,23.62,178.86,142.07,8.41,95.73,0.39 +2020-01-02 21:00:00,354.03,497.19,84.11,64.23,23.12,4.34,31.41,210.36,182.5,9.77,106.36,2.72 +2020-01-02 22:00:00,413.17,556.89,84.91,69.13,25.93,4.53,35.52,226.21,208.31,11.6,119.58,8.91 +2020-01-02 23:00:00,442.66,586.34,82.0,68.7,25.09,5.27,33.89,228.1,197.31,11.4,119.54,13.11 +2020-01-03 00:00:00,444.8,590.92,73.63,61.17,25.09,5.78,30.24,217.61,190.69,10.65,122.36,13.67 +2020-01-03 01:00:00,436.29,589.65,68.29,62.12,21.47,5.23,29.13,209.76,182.76,10.42,115.67,11.76 +2020-01-03 02:00:00,408.25,552.68,62.96,61.9,20.56,4.56,28.13,199.69,188.38,10.74,108.7,8.6 +2020-01-03 03:00:00,372.93,500.39,57.61,58.1,18.25,3.94,26.15,187.13,175.62,9.77,100.25,6.03 +2020-01-03 04:00:00,349.75,460.75,51.38,57.63,16.49,3.75,24.99,191.31,169.5,9.49,97.62,4.8 +2020-01-03 05:00:00,326.06,431.23,48.82,56.23,16.32,3.51,24.49,178.43,175.34,9.16,100.44,3.38 +2020-01-03 06:00:00,307.57,413.84,45.1,55.66,15.92,3.23,24.23,163.91,160.55,9.08,101.57,2.27 +2020-01-03 07:00:00,309.2,394.58,43.69,57.32,13.66,2.94,25.26,169.99,163.15,9.04,91.87,2.13 +2020-01-03 08:00:00,299.7,394.36,44.04,56.34,13.55,3.11,25.25,181.17,173.58,9.32,85.07,1.99 +2020-01-03 09:00:00,323.46,437.13,59.94,56.57,15.77,3.28,25.27,189.7,175.27,9.68,80.86,1.6 +2020-01-03 10:00:00,340.42,477.88,92.4,58.62,23.95,2.66,27.82,158.84,120.57,9.53,76.16,1.69 +2020-01-03 11:00:00,257.71,376.24,63.66,51.49,18.9,1.29,31.05,76.82,44.87,7.44,53.55,1.31 +2020-01-03 12:00:00,119.74,178.67,44.24,48.55,14.04,0.85,31.24,44.03,21.52,4.13,31.66,0.59 +2020-01-03 13:00:00,73.06,125.8,36.32,46.7,9.34,0.71,33.83,33.86,15.46,3.14,27.15,0.22 +2020-01-03 14:00:00,58.08,100.53,32.77,46.25,9.29,0.65,38.02,27.47,11.18,2.52,22.83,0.16 +2020-01-03 15:00:00,46.43,91.87,31.41,45.95,8.65,0.66,43.5,25.1,9.68,2.19,22.9,0.04 +2020-01-03 16:00:00,41.93,86.91,33.85,45.63,8.41,0.79,44.0,26.61,9.56,2.05,23.01,0.06 +2020-01-03 17:00:00,41.51,95.26,39.12,43.98,10.02,0.82,36.93,31.17,11.22,2.28,18.59,0.07 +2020-01-03 18:00:00,47.13,123.0,57.72,43.64,9.78,1.43,18.86,64.25,35.7,2.84,26.75,0.25 +2020-01-03 19:00:00,90.36,232.55,68.26,46.6,11.33,2.45,14.78,112.3,81.86,4.67,47.66,0.37 +2020-01-03 20:00:00,147.27,314.56,69.4,48.47,13.33,3.5,16.67,148.3,119.69,6.23,54.39,0.87 +2020-01-03 21:00:00,201.16,378.0,69.23,52.58,13.3,3.91,19.96,159.26,133.89,7.23,61.89,1.1 +2020-01-03 22:00:00,214.08,364.48,69.55,54.37,15.95,4.05,22.61,172.35,144.39,7.42,65.94,1.74 +2020-01-03 23:00:00,236.82,377.57,72.32,56.59,14.98,4.07,25.37,178.16,151.63,8.04,66.29,2.61 +2020-01-04 00:00:00,259.58,385.68,68.01,56.95,14.66,3.88,27.33,179.84,155.93,8.0,65.21,3.85 +2020-01-04 01:00:00,277.44,388.18,61.1,55.86,13.95,3.73,27.89,167.5,148.54,8.0,65.21,5.25 +2020-01-04 02:00:00,272.94,379.4,55.71,56.85,14.42,3.48,27.8,175.78,157.92,7.91,66.16,5.52 +2020-01-04 03:00:00,267.77,359.03,52.35,57.72,14.87,3.26,25.61,172.44,163.02,7.66,64.45,7.01 +2020-01-04 04:00:00,258.95,345.24,48.76,57.7,13.91,3.28,24.68,172.71,170.91,7.5,65.55,6.26 +2020-01-04 05:00:00,257.53,351.36,45.79,54.91,14.58,3.03,23.8,173.7,152.27,8.01,61.45,4.34 +2020-01-04 06:00:00,255.32,352.56,43.13,53.57,14.08,2.75,22.91,154.56,144.76,8.16,54.91,3.43 +2020-01-04 07:00:00,248.05,336.46,42.42,51.82,13.12,2.4,22.2,143.32,129.76,8.41,51.74,3.16 +2020-01-04 08:00:00,252.07,342.45,41.88,50.17,12.66,2.52,20.95,152.17,144.87,8.48,51.46,2.57 +2020-01-04 09:00:00,271.84,382.21,50.77,52.5,14.17,2.6,21.27,153.17,140.54,7.72,50.26,2.22 +2020-01-04 10:00:00,286.75,411.35,82.6,57.87,15.92,2.25,24.62,133.7,98.91,7.91,48.49,2.21 +2020-01-04 11:00:00,292.0,423.57,88.74,60.06,16.86,1.8,27.9,104.98,61.3,7.17,47.03,2.35 +2020-01-04 12:00:00,260.09,386.61,68.06,58.19,15.48,1.46,34.89,72.08,37.1,6.21,41.97,1.71 +2020-01-04 13:00:00,210.58,320.04,50.5,57.14,13.26,1.15,46.58,51.23,24.54,4.98,35.8,0.9 +2020-01-04 14:00:00,163.3,243.49,43.04,52.57,11.23,0.97,50.32,39.94,18.86,3.86,29.38,0.21 +2020-01-04 15:00:00,133.63,202.19,39.24,52.28,11.49,0.85,54.51,36.58,15.92,3.11,23.5,0.14 +2020-01-04 16:00:00,114.63,182.32,38.09,50.58,10.62,0.81,57.2,35.18,15.69,2.81,22.71,0.44 +2020-01-04 17:00:00,105.06,167.46,43.68,45.87,10.29,0.85,47.22,41.36,19.65,3.2,22.01,0.33 +2020-01-04 18:00:00,110.63,186.72,62.39,45.26,9.3,1.29,26.49,57.87,26.82,4.4,28.93,7.52 +2020-01-04 19:00:00,142.76,255.46,73.21,49.46,9.31,1.91,18.34,84.36,48.5,7.71,38.47,35.98 +2020-01-04 20:00:00,190.48,349.04,73.98,51.55,10.57,2.13,18.98,91.08,56.4,7.07,51.36,29.71 +2020-01-04 21:00:00,210.26,366.02,74.28,51.65,11.2,2.31,20.05,92.25,55.92,8.48,55.4,1.18 +2020-01-04 22:00:00,223.72,362.2,70.5,51.36,11.39,2.28,22.46,85.06,49.83,8.85,58.68,2.59 +2020-01-04 23:00:00,228.96,374.19,65.83,51.25,11.04,1.91,24.62,73.98,40.07,7.87,56.18,1.95 +2020-01-05 00:00:00,219.0,342.9,60.4,50.53,10.46,1.68,21.84,65.19,34.19,6.57,51.72,1.97 +2020-01-05 01:00:00,206.95,314.64,56.51,50.25,9.34,1.54,19.75,66.57,35.63,5.77,42.85,2.46 +2020-01-05 02:00:00,196.2,292.59,52.77,51.23,9.34,1.42,22.18,65.54,39.8,4.94,43.52,1.32 +2020-01-05 03:00:00,187.83,272.48,51.58,50.07,9.88,1.28,20.66,69.38,44.42,4.65,43.64,1.0 +2020-01-05 04:00:00,185.38,282.43,48.2,48.93,10.13,1.29,18.99,74.25,51.44,4.36,39.44,0.68 +2020-01-05 05:00:00,187.24,264.91,44.4,50.55,9.39,1.28,17.77,72.32,53.35,4.58,33.53,4.55 +2020-01-05 06:00:00,188.35,268.47,46.66,55.62,9.03,1.22,17.77,68.52,44.93,4.35,30.95,6.81 +2020-01-05 07:00:00,194.4,282.78,47.01,54.27,8.1,1.35,17.85,63.32,40.38,4.0,26.32,4.55 +2020-01-05 08:00:00,199.72,279.68,44.59,52.85,7.36,1.37,18.39,69.62,49.88,3.88,23.96,4.57 +2020-01-05 09:00:00,213.82,302.84,49.09,52.33,7.86,1.41,19.86,68.33,44.93,4.01,22.11,4.16 +2020-01-05 10:00:00,221.56,328.33,55.31,52.47,9.43,1.32,25.1,58.42,31.1,3.83,20.76,2.52 +2020-01-05 11:00:00,216.44,317.85,53.99,52.17,10.66,1.16,35.68,51.72,22.28,3.39,16.89,2.52 +2020-01-05 12:00:00,189.03,279.36,46.21,48.9,10.67,1.03,47.95,42.64,16.68,2.82,14.96,1.32 +2020-01-05 13:00:00,149.09,225.88,36.78,45.67,10.03,0.81,54.56,32.96,13.65,2.5,13.56,6.41 +2020-01-05 14:00:00,105.38,171.91,32.05,42.64,9.8,0.71,57.77,27.93,11.3,2.93,16.12,5.54 +2020-01-05 15:00:00,85.28,150.97,31.43,41.45,9.82,0.66,57.31,27.56,11.4,2.67,16.8,6.33 +2020-01-05 16:00:00,84.98,151.66,34.71,41.32,9.7,0.71,53.14,29.72,11.99,2.7,17.9,8.71 +2020-01-05 17:00:00,90.06,162.97,37.71,41.24,9.73,0.83,48.28,30.94,10.94,2.16,24.34,6.63 +2020-01-05 18:00:00,106.58,176.29,44.81,41.94,10.11,0.95,36.8,36.34,12.39,2.24,33.09,1.45 +2020-01-05 19:00:00,133.03,208.95,51.34,43.4,9.97,1.14,27.59,41.16,14.05,2.49,30.87,6.24 +2020-01-05 20:00:00,163.58,250.82,57.23,44.78,10.07,1.41,22.88,49.14,20.08,2.91,30.35,11.91 +2020-01-05 21:00:00,181.93,277.16,59.73,46.38,9.86,1.57,21.58,59.13,29.12,3.34,29.02,16.35 +2020-01-05 22:00:00,189.77,284.31,58.03,45.81,9.69,1.67,21.04,63.23,34.41,3.62,36.81,6.97 +2020-01-05 23:00:00,189.5,300.26,57.55,45.74,9.65,1.75,20.22,69.24,41.46,3.99,33.97,0.23 +2020-01-06 00:00:00,189.47,302.91,54.53,46.7,10.52,1.61,20.47,66.66,40.18,3.94,33.23,1.78 +2020-01-06 01:00:00,182.12,270.61,50.83,46.14,10.1,1.36,21.02,66.85,42.26,3.7,34.28,2.31 +2020-01-06 02:00:00,162.12,242.65,50.06,46.88,9.74,1.27,18.41,64.11,40.93,3.67,27.21,2.1 +2020-01-06 03:00:00,161.79,245.2,48.42,45.56,9.22,1.19,16.75,59.09,36.35,3.56,26.65,2.22 +2020-01-06 04:00:00,168.47,245.12,46.83,46.45,8.85,1.12,16.49,56.22,33.49,3.35,23.64,2.42 +2020-01-06 05:00:00,171.26,247.26,45.35,47.53,8.6,1.11,15.77,57.51,35.15,3.23,22.01,2.18 +2020-01-06 06:00:00,176.13,249.89,44.98,47.15,8.36,1.09,15.81,59.63,37.69,2.96,19.95,1.9 +2020-01-06 07:00:00,181.78,254.45,44.67,46.41,8.7,1.2,15.82,69.63,48.26,2.83,18.25,1.98 +2020-01-06 08:00:00,190.83,271.76,47.01,48.55,9.22,1.41,16.46,88.03,68.83,3.04,19.01,1.42 +2020-01-06 09:00:00,201.2,303.62,53.4,50.85,10.85,1.7,17.28,104.21,84.12,3.62,21.76,1.23 +2020-01-06 10:00:00,215.63,345.78,67.47,52.81,12.07,1.84,21.06,109.17,80.03,4.13,24.76,1.24 +2020-01-06 11:00:00,209.77,352.69,71.83,54.68,13.64,1.8,23.66,90.3,57.75,4.22,27.66,1.68 +2020-01-06 12:00:00,206.22,351.45,76.99,51.22,12.9,1.72,24.26,76.66,52.2,4.42,30.34,1.07 +2020-01-06 13:00:00,197.74,340.93,64.14,51.19,16.49,1.45,30.39,65.36,31.2,4.45,48.49,1.21 +2020-01-06 14:00:00,162.94,293.77,47.79,47.79,15.38,1.0,37.02,44.44,17.51,3.63,40.0,0.83 +2020-01-06 15:00:00,111.09,195.95,44.17,44.67,15.01,0.86,33.55,39.59,16.5,3.0,41.55,0.32 +2020-01-06 16:00:00,108.86,188.39,44.28,44.93,13.69,0.9,29.09,37.36,11.87,3.08,43.11,0.14 +2020-01-06 17:00:00,118.7,197.93,43.78,45.5,11.86,0.97,28.03,36.2,12.47,3.11,40.07,0.15 +2020-01-06 18:00:00,127.38,203.13,45.95,44.63,10.52,1.01,23.95,37.09,13.59,3.12,37.35,0.09 +2020-01-06 19:00:00,127.92,193.53,46.47,45.11,10.74,1.1,22.31,38.64,14.09,3.66,33.03,0.29 +2020-01-06 20:00:00,126.06,177.16,47.56,44.76,10.97,1.2,20.42,40.95,15.9,3.56,41.84,0.36 +2020-01-06 21:00:00,123.89,172.06,47.04,43.42,10.04,1.18,19.85,41.74,17.0,3.72,38.8,0.06 +2020-01-06 22:00:00,106.99,146.7,46.96,42.9,11.61,1.21,19.09,45.44,20.48,3.2,26.75,0.08 +2020-01-06 23:00:00,102.94,146.42,48.02,42.33,13.12,1.2,20.83,48.56,23.79,3.38,26.75,0.11 +2020-01-07 00:00:00,98.27,144.76,47.39,41.97,16.28,1.07,22.7,45.63,20.63,3.18,21.79,0.04 +2020-01-07 01:00:00,94.34,137.52,45.32,41.92,13.96,0.97,19.47,41.72,17.64,2.74,18.74,0.06 +2020-01-07 02:00:00,94.3,132.29,43.55,42.27,13.36,0.93,19.03,41.87,19.09,2.76,19.92,0.41 +2020-01-07 03:00:00,91.72,127.57,42.15,40.82,10.34,0.91,17.63,45.35,24.24,2.94,20.06,0.53 +2020-01-07 04:00:00,88.64,119.25,40.83,40.45,14.49,0.85,24.22,39.07,18.05,2.84,21.98,0.15 +2020-01-07 05:00:00,89.76,121.72,38.19,40.45,11.21,0.85,15.65,39.08,19.22,2.47,18.5,1.0 +2020-01-07 06:00:00,93.99,126.3,35.71,40.65,10.91,0.88,19.22,40.43,22.64,2.6,20.27,0.06 +2020-01-07 07:00:00,103.87,140.38,35.09,40.81,12.35,0.98,24.01,45.83,29.0,2.75,19.26,0.16 +2020-01-07 08:00:00,117.88,166.28,36.33,42.09,11.77,1.17,19.39,55.39,39.73,3.16,20.94,0.04 +2020-01-07 09:00:00,130.64,190.02,40.63,43.25,14.07,1.31,18.9,60.79,43.78,3.72,21.83,0.07 +2020-01-07 10:00:00,132.93,206.61,43.38,43.02,17.03,1.31,19.54,53.27,32.92,3.56,19.85,0.02 +2020-01-07 11:00:00,121.66,186.63,42.24,43.27,16.8,1.21,28.48,45.11,24.1,3.59,21.45,0.0 +2020-01-07 12:00:00,109.16,182.21,44.28,42.03,14.54,1.08,30.31,39.41,16.68,3.09,17.87,0.0 +2020-01-07 13:00:00,108.17,187.12,49.4,41.53,11.01,1.25,19.07,47.54,22.4,3.22,20.04,0.42 +2020-01-07 14:00:00,116.69,182.92,50.53,44.98,10.61,1.41,22.17,53.34,28.42,4.14,31.46,0.71 +2020-01-07 15:00:00,134.28,184.93,48.54,46.18,11.6,1.31,29.66,44.51,19.78,4.58,26.66,0.79 +2020-01-07 16:00:00,136.28,197.86,49.46,45.38,12.64,1.15,32.43,41.05,15.19,4.1,27.98,0.36 +2020-01-07 17:00:00,131.36,195.97,49.15,45.64,10.5,1.14,29.8,40.6,14.78,3.81,30.74,0.2 +2020-01-07 18:00:00,131.17,198.33,52.83,46.38,12.88,1.28,25.62,46.64,19.21,4.33,31.51,0.24 +2020-01-07 19:00:00,151.09,223.84,54.01,47.27,13.84,1.48,23.86,51.89,24.56,5.37,39.57,0.38 +2020-01-07 20:00:00,165.35,236.97,51.28,47.44,11.9,1.65,25.0,56.54,31.71,5.3,34.65,0.39 +2020-01-07 21:00:00,163.06,237.1,48.62,46.64,11.68,1.55,22.19,53.59,30.01,5.23,35.51,0.49 +2020-01-07 22:00:00,148.35,215.16,45.54,45.77,12.16,1.35,21.13,46.74,23.83,4.22,26.7,0.38 +2020-01-07 23:00:00,134.37,187.55,43.18,44.55,9.86,1.13,18.17,41.97,20.34,3.59,20.95,0.39 +2020-01-08 00:00:00,114.78,149.29,41.15,44.45,8.78,1.03,15.95,38.55,17.66,3.2,20.91,0.28 +2020-01-08 01:00:00,107.16,141.93,39.3,44.56,8.28,0.97,17.52,37.52,17.72,2.95,23.3,0.08 +2020-01-08 02:00:00,106.78,141.35,36.1,46.25,7.77,0.89,17.16,35.98,17.96,2.69,24.28,0.01 +2020-01-08 03:00:00,106.01,133.99,34.92,45.49,7.95,0.86,16.14,36.63,19.81,2.48,20.01,0.0 +2020-01-08 04:00:00,101.59,123.79,35.24,43.53,8.02,0.86,15.0,40.83,24.1,2.85,18.38,0.05 +2020-01-08 05:00:00,97.71,118.55,36.91,43.87,7.63,0.8,16.86,39.3,20.9,3.07,16.09,0.07 +2020-01-08 06:00:00,88.03,106.63,36.2,42.45,7.84,0.83,18.26,44.04,26.7,2.7,15.82,0.03 +2020-01-08 07:00:00,87.97,108.32,37.43,42.69,7.73,0.87,18.4,44.85,26.96,2.82,17.01,0.01 +2020-01-08 08:00:00,88.97,106.63,38.46,42.76,8.64,0.96,20.88,50.46,32.9,2.85,17.03,0.01 +2020-01-08 09:00:00,95.45,121.8,40.17,43.09,8.65,1.12,21.18,54.84,36.58,3.02,17.24,0.0 +2020-01-08 10:00:00,102.58,129.14,40.05,42.78,7.95,1.22,20.16,51.36,32.66,3.34,17.07,0.03 +2020-01-08 11:00:00,105.55,131.77,40.66,42.93,9.37,1.23,17.72,49.54,30.58,3.42,19.76,0.04 +2020-01-08 12:00:00,114.27,141.84,40.39,43.02,9.08,1.28,18.68,48.37,28.92,3.77,22.17,0.08 +2020-01-08 13:00:00,129.08,159.51,40.3,43.69,9.7,1.28,18.68,46.92,27.34,3.99,24.72,0.17 +2020-01-08 14:00:00,136.18,171.27,41.93,44.26,9.11,1.31,18.16,48.61,27.92,4.03,32.59,0.29 +2020-01-08 15:00:00,142.61,182.2,42.59,46.02,9.6,1.42,20.06,51.9,31.19,4.13,24.08,0.29 +2020-01-08 16:00:00,141.19,169.5,45.38,47.7,10.32,1.44,18.24,53.65,31.77,4.09,26.94,0.4 +2020-01-08 17:00:00,146.38,177.55,43.31,47.23,9.39,1.53,17.46,59.28,39.83,4.43,28.61,0.33 +2020-01-08 18:00:00,158.16,187.6,43.77,46.01,9.91,1.49,17.66,59.87,40.63,4.78,34.99,0.63 +2020-01-08 19:00:00,173.76,192.69,39.21,46.16,9.37,1.28,17.31,49.72,31.82,4.88,35.17,0.58 +2020-01-08 20:00:00,155.33,179.6,37.24,47.59,8.8,1.32,15.66,45.11,28.34,4.52,31.32,0.44 +2020-01-08 21:00:00,127.92,159.91,34.11,47.0,8.39,1.18,16.11,36.86,20.03,3.91,26.41,0.4 +2020-01-08 22:00:00,109.36,138.8,32.83,46.3,8.05,1.06,14.68,30.85,14.65,3.25,18.24,0.29 +2020-01-08 23:00:00,94.7,126.65,29.65,43.58,7.74,0.78,15.14,27.16,12.52,2.65,12.0,0.03 +2020-01-09 00:00:00,82.95,115.3,26.32,41.45,7.4,0.72,16.59,24.1,10.92,2.18,11.44,0.0 +2020-01-09 01:00:00,75.34,103.08,23.66,40.36,6.15,0.61,17.85,21.6,9.67,1.88,10.36,0.02 +2020-01-09 02:00:00,68.57,93.65,23.45,39.23,5.8,0.57,18.41,20.26,8.79,1.83,10.03,0.01 +2020-01-09 03:00:00,60.18,82.75,24.06,37.76,6.27,0.56,17.7,20.96,9.55,1.62,7.39,0.0 +2020-01-09 04:00:00,57.49,75.79,24.14,38.02,6.45,0.54,17.98,20.52,8.87,1.44,6.45,0.0 +2020-01-09 05:00:00,54.47,73.79,23.84,37.44,6.96,0.63,17.32,20.02,8.23,1.38,5.9,0.04 +2020-01-09 06:00:00,56.99,80.82,23.99,36.93,6.71,0.67,16.71,20.58,8.55,1.63,6.51,0.0 +2020-01-09 07:00:00,66.93,94.64,25.71,35.94,7.31,0.69,16.39,21.6,8.95,1.65,7.33,0.0 +2020-01-09 08:00:00,83.45,125.51,27.22,35.94,7.18,0.7,17.66,25.31,12.37,1.76,9.69,0.01 +2020-01-09 09:00:00,98.86,147.0,28.72,35.75,6.78,0.76,19.04,28.6,15.13,1.96,9.64,0.05 +2020-01-09 10:00:00,101.26,148.54,27.99,35.13,6.94,0.82,20.63,28.95,15.55,2.04,9.99,0.0 +2020-01-09 11:00:00,102.77,145.18,28.83,35.89,7.65,0.82,22.93,28.22,14.27,2.31,11.67,0.01 +2020-01-09 12:00:00,101.72,141.48,29.9,35.71,7.19,0.84,26.53,27.51,13.45,2.36,16.06,0.04 +2020-01-09 13:00:00,96.04,139.6,29.69,36.2,6.45,1.09,30.06,27.31,13.59,2.41,21.1,0.0 +2020-01-09 14:00:00,90.23,132.07,30.46,36.71,6.44,0.91,33.66,28.26,12.18,2.24,19.37,0.0 +2020-01-09 15:00:00,83.62,127.67,32.96,35.73,7.08,0.89,35.32,29.96,10.95,2.33,18.58,0.0 +2020-01-09 16:00:00,79.11,121.86,35.76,34.69,7.08,0.77,37.05,33.23,11.7,2.36,17.35,0.0 +2020-01-09 17:00:00,70.48,114.7,32.23,35.09,6.69,0.77,34.93,28.49,11.15,2.38,18.79,0.01 +2020-01-09 18:00:00,73.48,117.96,40.2,34.12,7.37,0.9,25.64,34.65,13.67,2.77,20.97,0.0 +2020-01-09 19:00:00,89.27,148.83,48.05,35.41,8.67,1.3,17.66,46.25,21.41,3.21,25.93,0.14 +2020-01-09 20:00:00,118.3,191.59,50.88,37.16,9.15,1.46,17.78,53.91,27.92,4.2,29.58,0.23 +2020-01-09 21:00:00,139.78,214.5,47.57,38.44,8.95,1.41,17.11,51.17,26.9,4.11,25.21,0.18 +2020-01-09 22:00:00,147.23,216.27,46.14,38.36,8.76,1.52,16.48,51.61,28.64,4.18,25.43,0.13 +2020-01-09 23:00:00,143.62,216.83,43.39,37.31,9.21,1.48,16.59,51.74,30.65,4.15,23.29,0.08 +2020-01-10 00:00:00,145.32,224.16,41.81,37.33,9.22,1.38,16.52,49.93,29.35,3.67,23.04,0.09 +2020-01-10 01:00:00,139.61,216.3,39.6,36.9,8.7,1.36,16.01,48.93,29.4,3.67,21.15,0.07 +2020-01-10 02:00:00,132.18,196.35,38.0,36.48,8.53,1.26,16.61,43.06,23.36,3.29,16.24,0.03 +2020-01-10 03:00:00,119.66,171.06,36.28,34.4,7.6,1.19,15.79,38.27,19.67,3.37,15.09,0.03 +2020-01-10 04:00:00,103.24,147.71,35.05,35.0,7.16,1.02,16.28,33.52,15.24,3.2,15.23,0.01 +2020-01-10 05:00:00,90.02,129.18,32.32,35.01,6.94,0.85,19.0,29.32,12.12,3.04,13.25,0.0 +2020-01-10 06:00:00,85.84,124.87,30.39,34.36,6.5,0.88,20.25,28.09,12.11,2.73,11.52,0.0 +2020-01-10 07:00:00,88.02,130.57,31.2,33.55,7.46,0.91,20.83,28.85,12.59,2.58,11.32,0.0 +2020-01-10 08:00:00,92.06,138.7,34.66,32.55,7.85,0.96,19.28,34.94,17.42,2.53,10.22,0.02 +2020-01-10 09:00:00,99.0,152.78,37.45,33.44,7.64,1.08,21.34,38.88,19.81,2.88,11.41,0.0 +2020-01-10 10:00:00,115.5,175.16,40.49,34.67,8.0,1.18,24.21,40.35,19.14,3.07,12.34,0.04 +2020-01-10 11:00:00,140.62,199.78,40.81,36.12,9.25,1.16,29.07,37.6,15.81,3.23,14.54,0.0 +2020-01-10 12:00:00,148.37,211.17,41.39,38.48,10.74,1.14,37.03,38.18,15.77,3.15,22.7,0.07 +2020-01-10 13:00:00,156.34,218.12,44.52,39.62,10.87,1.07,42.8,38.99,13.47,3.23,25.11,0.18 +2020-01-10 14:00:00,153.09,210.16,41.85,40.0,10.54,1.02,47.87,36.44,12.47,3.56,21.63,0.04 +2020-01-10 15:00:00,128.95,194.37,41.83,38.96,10.54,0.97,52.45,35.02,12.52,3.26,17.85,0.05 +2020-01-10 16:00:00,115.68,177.59,36.86,38.1,10.13,0.86,55.74,32.66,12.94,2.94,20.47,0.09 +2020-01-10 17:00:00,100.11,163.2,42.86,37.58,9.75,0.9,51.39,40.02,17.57,2.98,21.77,0.08 +2020-01-10 18:00:00,91.85,162.46,59.03,37.18,9.33,1.18,31.73,53.56,22.89,3.76,23.66,0.04 +2020-01-10 19:00:00,115.64,210.1,70.06,40.34,10.37,1.84,21.61,82.59,47.9,5.09,42.96,0.58 +2020-01-10 20:00:00,162.44,298.68,70.67,42.97,12.11,2.25,18.23,100.19,62.52,5.96,56.2,1.34 +2020-01-10 21:00:00,201.5,351.17,68.77,44.57,13.03,2.32,20.06,103.85,73.21,6.99,62.12,1.75 +2020-01-10 22:00:00,206.64,347.78,65.32,44.68,12.7,2.31,19.59,101.97,72.57,6.7,58.29,1.85 +2020-01-10 23:00:00,208.01,333.53,61.71,43.22,11.64,2.18,20.29,101.84,75.57,6.25,45.95,1.52 +2020-01-11 00:00:00,199.19,325.91,58.56,42.07,11.1,2.0,18.74,98.33,68.95,5.98,37.74,0.89 +2020-01-11 01:00:00,186.57,298.29,57.16,41.9,10.24,1.61,17.79,88.12,61.67,5.35,33.23,0.61 +2020-01-11 02:00:00,165.04,253.55,52.49,40.93,9.22,1.32,17.23,68.24,42.63,4.34,26.65,0.36 +2020-01-11 03:00:00,137.31,206.53,48.98,38.72,8.73,1.09,16.88,53.25,26.19,4.48,23.37,0.1 +2020-01-11 04:00:00,128.66,185.7,45.15,39.85,8.25,0.96,17.83,46.14,22.24,4.09,21.05,0.12 +2020-01-11 05:00:00,129.26,185.4,45.02,39.79,8.14,0.93,16.69,47.64,24.31,3.71,18.86,0.1 +2020-01-11 06:00:00,136.24,194.81,45.44,39.67,8.54,0.96,16.4,53.28,29.97,3.53,16.54,0.09 +2020-01-11 07:00:00,142.44,207.58,46.36,39.83,9.14,0.98,14.7,61.92,35.1,3.62,14.52,0.1 +2020-01-11 08:00:00,145.15,218.82,47.68,39.87,10.19,1.17,15.8,68.07,45.52,3.84,15.96,0.05 +2020-01-11 09:00:00,159.36,245.79,50.02,40.84,12.55,1.32,18.71,66.81,43.63,4.14,16.52,0.05 +2020-01-11 10:00:00,165.81,255.71,52.89,41.04,14.43,1.32,24.8,59.43,34.27,4.23,16.62,0.07 +2020-01-11 11:00:00,156.04,238.45,48.15,38.97,15.62,1.17,35.28,48.79,23.73,3.91,17.69,0.12 +2020-01-11 12:00:00,133.61,211.7,46.12,38.79,13.28,0.99,49.0,42.44,15.83,3.13,16.9,0.1 +2020-01-11 13:00:00,103.76,173.87,36.6,37.97,11.08,0.85,57.42,32.64,14.43,2.98,14.8,0.08 +2020-01-11 14:00:00,84.57,144.18,35.98,38.38,11.02,0.83,62.48,31.2,11.66,2.92,15.91,0.1 +2020-01-11 15:00:00,81.62,139.69,37.41,37.41,10.66,0.88,65.02,32.1,11.7,2.76,15.47,0.08 +2020-01-11 16:00:00,83.11,144.76,40.16,38.02,10.53,0.87,66.53,33.32,11.53,2.76,17.16,0.1 +2020-01-11 17:00:00,82.54,152.66,47.38,37.76,10.26,0.88,60.94,41.5,16.64,3.19,19.36,0.1 +2020-01-11 18:00:00,93.61,181.92,65.17,37.63,10.73,1.12,35.2,62.26,29.14,3.48,22.13,0.13 +2020-01-11 19:00:00,126.9,249.32,75.36,40.65,12.12,2.17,18.88,95.29,58.84,4.22,39.43,0.27 +2020-01-11 20:00:00,188.1,358.42,79.02,43.92,14.4,3.03,20.69,118.21,86.22,5.74,54.4,1.29 +2020-01-11 21:00:00,246.32,433.81,76.98,47.34,15.47,3.55,23.15,137.68,108.25,6.43,69.69,3.61 +2020-01-11 22:00:00,279.2,454.76,72.34,50.83,16.68,3.6,26.51,140.6,112.97,7.58,70.82,5.58 +2020-01-11 23:00:00,271.89,433.32,68.19,51.15,17.13,3.33,26.81,144.61,116.38,7.61,64.27,6.64 +2020-01-12 00:00:00,263.28,419.48,66.06,50.59,16.14,3.29,24.53,158.99,133.44,7.67,54.17,5.25 +2020-01-12 01:00:00,263.18,423.83,62.12,49.55,13.23,3.11,21.94,166.69,146.85,7.41,52.9,3.49 +2020-01-12 02:00:00,252.15,414.99,58.94,49.54,12.99,2.95,21.32,149.03,158.99,6.88,55.07,2.51 +2020-01-12 03:00:00,242.65,385.96,50.99,46.99,12.5,2.8,20.66,154.66,157.44,7.13,50.41,1.81 +2020-01-12 04:00:00,234.96,352.42,51.08,48.35,11.87,2.51,20.63,157.28,140.1,7.01,51.45,1.33 +2020-01-12 05:00:00,227.77,332.08,50.68,48.95,11.82,2.16,19.78,148.69,132.47,6.87,45.07,1.28 +2020-01-12 06:00:00,214.63,314.26,50.58,48.6,10.64,1.82,18.54,115.46,96.61,6.01,38.68,1.2 +2020-01-12 07:00:00,204.86,301.96,47.01,49.3,10.13,1.68,18.46,113.33,94.1,5.6,33.1,0.9 +2020-01-12 08:00:00,216.1,315.12,45.81,48.25,9.91,1.85,20.12,113.52,98.53,5.72,28.89,0.93 +2020-01-12 09:00:00,236.54,342.87,56.68,50.83,10.53,1.88,21.22,119.08,95.68,6.14,28.45,0.82 +2020-01-12 10:00:00,244.8,356.86,68.42,51.26,12.47,1.67,24.08,102.64,71.55,5.69,24.97,0.94 +2020-01-12 11:00:00,222.52,315.91,66.65,48.56,13.66,1.4,31.91,78.9,42.91,4.72,20.14,0.7 +2020-01-12 12:00:00,174.94,265.12,54.72,47.1,12.68,1.21,45.17,59.08,29.11,3.76,17.83,0.48 +2020-01-12 13:00:00,133.6,218.11,49.15,45.47,10.9,1.06,56.96,48.45,21.61,3.2,15.71,0.28 +2020-01-12 14:00:00,112.61,185.07,44.09,44.49,9.49,1.03,63.51,41.38,17.27,2.8,14.83,0.27 +2020-01-12 15:00:00,104.03,172.17,43.76,43.89,8.51,0.92,67.64,39.41,15.66,2.59,12.96,0.26 +2020-01-12 16:00:00,93.58,163.96,45.82,41.39,8.06,0.89,64.93,42.0,18.57,2.35,12.81,0.26 +2020-01-12 17:00:00,90.77,164.52,56.8,41.54,9.18,1.04,50.69,51.29,22.52,2.47,15.69,0.28 +2020-01-12 18:00:00,104.88,204.51,74.96,42.87,9.9,1.66,27.88,77.83,36.36,3.95,26.06,0.45 +2020-01-12 19:00:00,141.5,278.34,79.66,45.76,11.16,2.4,21.56,104.88,65.85,4.86,40.67,0.61 +2020-01-12 20:00:00,197.06,362.95,80.3,50.89,13.91,3.14,24.35,140.27,104.87,5.81,71.6,1.46 +2020-01-12 21:00:00,275.98,451.44,81.16,54.93,15.84,4.29,28.85,177.35,141.21,7.29,73.4,2.33 +2020-01-12 22:00:00,352.01,528.67,77.51,58.4,19.91,4.68,32.1,193.46,162.25,8.07,77.77,4.5 +2020-01-12 23:00:00,369.1,537.99,74.97,60.03,20.88,4.8,32.47,181.69,166.72,8.69,77.94,5.12 +2020-01-13 00:00:00,360.6,504.54,71.59,57.83,19.21,4.71,30.8,171.29,165.37,9.3,71.99,4.21 +2020-01-13 01:00:00,331.95,461.11,67.94,56.73,18.07,3.89,28.81,152.82,139.16,9.1,64.1,3.34 +2020-01-13 02:00:00,305.93,436.18,64.47,56.65,14.43,3.58,23.7,145.59,135.05,8.86,54.42,2.58 +2020-01-13 03:00:00,291.25,422.53,62.02,53.61,14.11,2.94,23.47,128.66,118.74,7.89,48.18,2.9 +2020-01-13 04:00:00,275.75,397.84,57.46,54.41,12.4,2.86,27.73,144.09,122.51,7.43,47.05,2.78 +2020-01-13 05:00:00,268.68,383.97,54.01,53.91,11.55,2.74,28.02,133.29,126.07,6.98,45.47,2.43 +2020-01-13 06:00:00,268.02,378.5,54.04,54.92,11.24,2.5,25.71,150.42,128.86,6.73,41.27,2.17 +2020-01-13 07:00:00,264.48,368.14,60.37,54.77,10.05,2.04,20.99,112.3,86.87,6.7,35.07,2.36 +2020-01-13 08:00:00,239.43,345.35,61.5,54.08,9.49,1.94,19.08,97.68,69.77,6.19,27.61,2.0 +2020-01-13 09:00:00,225.93,339.85,65.66,53.28,9.95,1.72,20.87,82.64,49.96,5.86,23.21,1.89 +2020-01-13 10:00:00,205.7,317.16,59.97,52.98,11.02,1.4,26.37,64.6,32.11,4.82,19.79,0.99 +2020-01-13 11:00:00,189.06,300.06,52.91,51.34,10.58,1.26,32.12,51.8,21.84,4.17,17.09,0.82 +2020-01-13 12:00:00,175.1,296.46,47.57,51.02,10.45,1.23,37.06,42.59,16.21,4.25,16.79,0.66 +2020-01-13 13:00:00,170.84,287.21,44.83,49.68,10.55,1.22,41.0,37.96,12.8,4.07,15.69,0.56 +2020-01-13 14:00:00,152.22,271.47,43.57,49.24,9.4,1.24,43.02,34.92,11.22,3.64,15.57,0.75 +2020-01-13 15:00:00,140.05,251.37,41.6,49.81,10.82,1.24,43.99,32.44,9.42,3.46,14.41,0.7 +2020-01-13 16:00:00,132.69,245.25,42.31,49.76,10.39,1.24,42.6,32.07,8.34,3.35,15.02,0.62 +2020-01-13 17:00:00,134.99,240.21,49.67,49.95,11.09,1.36,35.25,40.99,12.86,3.45,16.52,0.52 +2020-01-13 18:00:00,150.34,252.28,57.68,50.36,10.64,1.55,22.62,54.06,23.38,4.08,22.5,0.7 +2020-01-13 19:00:00,170.44,290.4,58.88,53.31,9.88,2.26,19.94,64.22,35.36,5.13,33.41,0.76 +2020-01-13 20:00:00,200.7,324.22,56.16,58.51,11.37,2.42,21.75,75.08,49.67,5.91,60.04,0.8 +2020-01-13 21:00:00,215.16,307.85,53.22,59.87,11.15,2.06,20.67,68.9,42.23,6.23,53.17,1.38 +2020-01-13 22:00:00,198.99,261.09,49.14,56.51,10.79,1.75,17.94,55.67,31.09,5.55,37.56,1.19 +2020-01-13 23:00:00,187.31,231.32,44.31,54.89,9.53,1.58,18.08,47.14,24.3,4.7,26.22,0.72 +2020-01-14 00:00:00,175.09,221.58,39.34,55.25,9.44,1.47,18.12,39.33,18.74,4.51,22.54,0.61 +2020-01-14 01:00:00,179.76,231.28,36.78,54.08,10.14,1.35,17.93,38.34,19.2,4.01,17.12,0.41 +2020-01-14 02:00:00,166.72,213.95,34.67,53.9,9.56,1.21,16.43,35.42,17.08,3.77,15.39,0.21 +2020-01-14 03:00:00,133.45,171.66,32.02,51.13,8.49,1.08,15.97,30.92,13.7,3.24,14.69,0.19 +2020-01-14 04:00:00,114.43,145.65,31.36,50.68,8.42,0.97,15.71,30.33,13.29,2.97,13.81,0.1 +2020-01-14 05:00:00,89.9,118.62,31.19,48.92,8.16,0.86,15.39,31.0,14.14,2.59,14.89,0.05 +2020-01-14 06:00:00,82.69,108.6,30.69,47.92,8.17,0.9,15.51,32.41,16.21,2.81,16.06,0.09 +2020-01-14 07:00:00,81.48,106.5,31.4,47.02,8.83,0.92,15.17,34.72,18.55,2.49,13.47,0.08 +2020-01-14 08:00:00,85.66,118.78,31.71,45.51,9.03,0.98,14.49,37.23,21.3,2.73,13.98,0.05 +2020-01-14 09:00:00,99.79,139.99,30.04,44.44,8.36,1.01,17.53,37.13,22.53,2.65,13.51,0.08 +2020-01-14 10:00:00,104.4,145.27,30.81,42.23,8.21,1.08,19.87,35.84,20.51,2.6,13.22,0.09 +2020-01-14 11:00:00,114.16,156.54,33.46,42.28,9.87,1.1,20.85,38.5,20.64,2.72,15.58,0.06 +2020-01-14 12:00:00,128.7,177.8,35.63,45.62,9.05,1.13,24.03,37.35,18.94,2.87,28.0,0.16 +2020-01-14 13:00:00,142.61,201.86,36.72,45.66,9.32,1.08,29.17,36.84,17.06,3.21,20.77,0.25 +2020-01-14 14:00:00,147.44,207.45,35.28,46.76,9.36,1.04,35.54,33.68,14.72,3.3,21.85,0.1 +2020-01-14 15:00:00,129.87,185.24,35.66,46.88,10.22,1.0,40.0,32.93,13.48,3.06,26.7,0.2 +2020-01-14 16:00:00,101.23,152.63,34.66,44.25,10.06,0.93,41.05,32.26,13.47,2.76,29.66,0.07 +2020-01-14 17:00:00,80.92,128.42,36.22,42.27,9.76,0.94,37.26,33.79,14.57,2.47,26.14,0.07 +2020-01-14 18:00:00,79.73,130.13,45.75,39.85,9.12,1.09,25.6,44.6,20.56,2.74,24.15,0.1 +2020-01-14 19:00:00,87.7,147.97,55.23,42.09,8.85,1.44,17.3,58.57,30.28,3.76,30.52,0.25 +2020-01-14 20:00:00,105.22,176.33,54.9,43.79,9.4,1.61,16.16,61.61,33.58,4.76,39.17,0.76 +2020-01-14 21:00:00,117.04,184.4,52.62,44.19,9.63,1.52,16.92,59.05,32.43,4.61,51.04,1.18 +2020-01-14 22:00:00,114.48,179.24,49.93,43.84,9.65,1.49,16.55,59.1,34.28,4.42,44.22,1.18 +2020-01-14 23:00:00,112.35,178.23,47.76,43.56,10.57,1.6,16.25,72.77,49.27,4.32,44.12,1.08 +2020-01-15 00:00:00,112.75,183.98,45.92,40.95,10.22,1.47,15.9,80.37,59.94,4.48,38.6,0.93 +2020-01-15 01:00:00,108.25,177.92,46.01,40.32,9.58,1.26,15.75,69.59,48.21,4.94,33.17,0.69 +2020-01-15 02:00:00,95.9,156.59,45.26,40.67,8.85,1.1,14.16,55.66,32.56,3.72,27.02,0.55 +2020-01-15 03:00:00,88.94,135.69,40.26,39.45,7.76,0.96,14.93,48.72,27.65,3.64,21.77,0.3 +2020-01-15 04:00:00,83.28,119.7,37.43,39.62,7.1,0.94,16.81,41.78,21.43,3.33,19.27,0.11 +2020-01-15 05:00:00,76.21,109.59,36.06,39.04,7.28,0.99,15.77,41.52,21.73,2.89,19.54,0.16 +2020-01-15 06:00:00,72.22,104.62,36.82,38.17,7.72,0.79,14.42,42.98,23.34,2.64,16.26,0.04 +2020-01-15 07:00:00,72.16,103.86,38.71,37.95,8.14,0.85,14.0,52.44,33.45,2.62,15.12,0.09 +2020-01-15 08:00:00,77.13,118.33,40.72,37.3,10.06,1.07,13.87,71.03,53.12,2.92,16.29,0.11 +2020-01-15 09:00:00,92.05,151.84,45.82,38.07,10.9,1.24,15.52,76.22,56.17,3.27,15.95,0.11 +2020-01-15 10:00:00,105.38,170.73,49.42,39.45,11.31,1.23,19.34,64.04,39.62,3.44,16.7,0.22 +2020-01-15 11:00:00,117.31,181.29,50.27,41.51,11.77,1.25,25.15,54.03,26.34,3.34,21.53,0.09 +2020-01-15 12:00:00,123.77,189.51,48.66,43.25,12.4,1.23,34.98,47.65,19.89,3.34,28.62,0.3 +2020-01-15 13:00:00,121.6,193.72,46.63,44.19,12.12,1.18,44.73,42.3,16.62,3.4,22.59,0.14 +2020-01-15 14:00:00,119.05,195.08,46.56,45.08,12.16,1.18,50.85,39.76,14.22,3.72,22.45,0.12 +2020-01-15 15:00:00,116.98,192.82,43.17,44.89,12.31,0.99,58.83,34.25,10.05,3.35,32.06,0.15 +2020-01-15 16:00:00,113.9,187.98,40.84,42.86,10.74,0.85,58.91,32.25,8.94,3.03,35.27,0.2 +2020-01-15 17:00:00,105.97,176.41,43.41,41.44,10.64,0.88,52.25,33.97,9.51,2.94,33.89,0.07 +2020-01-15 18:00:00,103.81,182.23,56.55,41.57,10.77,1.14,31.58,47.03,15.91,3.54,43.13,0.2 +2020-01-15 19:00:00,122.28,212.23,64.94,42.57,10.88,1.46,20.28,65.05,30.83,4.87,50.26,0.57 +2020-01-15 20:00:00,151.84,257.7,66.67,44.55,12.12,1.66,19.29,73.93,39.39,5.5,49.78,0.85 +2020-01-15 21:00:00,166.61,273.78,62.73,46.4,13.37,1.6,21.31,69.41,37.53,4.78,59.6,0.84 +2020-01-15 22:00:00,165.65,267.48,55.7,46.41,13.6,1.43,20.57,60.86,32.4,4.97,44.79,0.67 +2020-01-15 23:00:00,164.57,254.8,50.31,46.43,14.52,1.33,19.35,57.34,31.76,4.61,36.77,0.72 +2020-01-16 00:00:00,152.67,232.31,46.69,44.8,13.33,1.21,17.8,52.5,28.54,4.41,32.35,0.55 +2020-01-16 01:00:00,134.64,204.34,43.77,42.61,11.22,0.92,17.65,46.01,23.58,4.08,23.9,0.5 +2020-01-16 02:00:00,119.9,177.29,42.33,42.12,9.91,0.85,17.39,45.24,23.36,3.86,18.88,0.27 +2020-01-16 03:00:00,112.58,163.95,38.94,39.65,8.39,0.79,15.35,41.69,21.45,3.51,17.47,0.12 +2020-01-16 04:00:00,104.18,149.2,37.67,39.93,8.32,0.78,15.62,40.48,20.84,3.44,15.81,0.12 +2020-01-16 05:00:00,103.25,145.04,36.81,40.95,8.58,0.76,15.61,38.53,19.42,3.18,15.63,0.09 +2020-01-16 06:00:00,107.11,154.59,34.93,41.21,8.58,0.77,15.19,39.8,22.53,2.93,14.95,0.09 +2020-01-16 07:00:00,110.36,167.51,33.97,41.89,9.08,0.82,15.77,39.19,22.99,2.56,14.3,0.04 +2020-01-16 08:00:00,113.16,174.29,34.06,41.53,9.92,0.95,15.12,50.78,36.34,2.57,14.02,0.09 +2020-01-16 09:00:00,124.73,187.54,38.48,41.88,10.35,1.09,16.24,61.67,45.76,3.19,15.83,0.12 +2020-01-16 10:00:00,140.13,209.09,43.14,42.66,10.28,1.13,17.51,60.92,41.7,3.69,17.84,0.08 +2020-01-16 11:00:00,139.21,197.68,47.5,42.16,10.74,1.11,19.21,54.43,29.58,3.67,27.91,0.08 +2020-01-16 12:00:00,130.91,179.89,48.38,41.9,11.19,1.08,21.91,51.88,25.91,3.57,30.55,0.25 +2020-01-16 13:00:00,127.06,177.42,48.06,43.39,10.99,1.07,24.8,48.16,22.37,3.79,26.99,0.41 +2020-01-16 14:00:00,139.78,201.86,47.28,43.76,11.29,1.02,28.46,41.65,16.06,3.56,32.8,0.26 +2020-01-16 15:00:00,142.73,205.6,49.35,44.21,9.75,1.11,25.76,46.73,19.88,3.84,33.18,0.23 +2020-01-16 16:00:00,143.0,193.84,47.44,44.14,10.57,1.16,21.51,47.16,21.74,4.14,37.66,0.29 +2020-01-16 17:00:00,141.75,192.42,50.82,43.33,10.82,1.18,20.01,55.54,29.39,4.6,40.64,0.12 +2020-01-16 18:00:00,146.77,199.93,51.52,43.8,10.7,1.21,16.33,54.87,28.77,5.04,45.58,0.42 +2020-01-16 19:00:00,158.45,210.92,50.52,45.25,10.74,1.42,17.39,62.02,37.28,5.35,53.13,0.33 +2020-01-16 20:00:00,172.97,238.95,50.45,47.37,11.45,1.54,17.75,63.6,39.56,5.47,58.56,0.71 +2020-01-16 21:00:00,193.98,269.5,49.79,49.2,11.76,1.58,17.8,64.7,40.88,5.57,57.82,0.35 +2020-01-16 22:00:00,194.73,269.5,46.69,48.98,11.88,1.55,18.29,61.55,38.71,5.79,47.01,0.44 +2020-01-16 23:00:00,183.39,246.99,42.42,48.14,10.79,1.49,18.62,59.42,39.19,5.46,37.28,0.33 +2020-01-17 00:00:00,158.75,205.89,39.69,45.25,10.57,1.34,17.21,54.19,34.79,4.81,25.69,0.46 +2020-01-17 01:00:00,129.56,164.76,36.97,42.71,10.28,1.14,17.15,46.84,28.5,4.65,26.57,0.51 +2020-01-17 02:00:00,101.58,127.43,35.41,42.25,9.54,1.03,16.42,39.37,20.84,3.83,24.6,0.48 +2020-01-17 03:00:00,84.8,105.57,33.7,40.14,8.35,0.92,13.75,37.51,19.86,3.1,19.11,0.42 +2020-01-17 04:00:00,75.41,93.77,35.44,40.49,8.02,0.88,13.69,37.0,19.25,2.9,17.07,0.25 +2020-01-17 05:00:00,74.87,94.69,33.48,41.37,8.19,0.86,13.82,37.35,20.49,3.08,17.64,0.29 +2020-01-17 06:00:00,81.49,108.01,33.16,41.52,8.83,0.91,14.34,42.08,26.32,2.96,16.82,0.26 +2020-01-17 07:00:00,90.82,125.42,33.49,42.34,8.98,0.94,13.4,47.34,31.66,3.14,16.64,0.1 +2020-01-17 08:00:00,95.69,142.23,32.02,42.35,9.31,1.0,14.16,49.59,36.04,2.94,14.15,0.1 +2020-01-17 09:00:00,95.03,143.19,33.08,40.28,8.46,1.04,14.18,50.3,35.8,2.93,13.03,0.1 +2020-01-17 10:00:00,97.75,144.12,35.21,39.93,8.82,1.1,15.15,50.42,34.36,3.32,13.92,0.1 +2020-01-17 11:00:00,111.02,150.21,34.6,40.48,8.9,1.12,18.17,43.8,26.85,3.46,15.28,0.24 +2020-01-17 12:00:00,123.58,164.18,37.83,40.17,9.17,1.0,21.24,48.58,22.02,3.36,22.5,0.26 +2020-01-17 13:00:00,134.45,176.02,33.36,40.2,8.93,0.9,27.42,36.68,18.38,3.18,27.46,0.16 +2020-01-17 14:00:00,124.93,163.28,30.81,39.86,8.73,0.87,31.42,31.87,15.11,3.02,22.08,0.15 +2020-01-17 15:00:00,94.99,131.82,30.76,38.91,9.52,0.77,31.2,30.47,13.82,2.56,18.2,0.11 +2020-01-17 16:00:00,83.11,120.29,30.6,35.89,9.58,0.75,29.77,31.36,14.93,2.68,17.61,0.12 +2020-01-17 17:00:00,78.78,118.25,33.4,36.29,9.07,0.81,26.17,33.58,15.94,2.7,15.7,0.07 +2020-01-17 18:00:00,85.88,132.72,40.41,35.98,8.96,0.96,19.4,42.03,21.53,3.33,20.41,0.09 +2020-01-17 19:00:00,100.4,160.85,46.06,36.78,10.0,1.39,15.44,64.01,43.29,4.49,27.51,0.06 +2020-01-17 20:00:00,119.6,199.38,44.9,38.04,11.29,1.68,16.54,74.84,55.21,5.0,38.13,0.29 +2020-01-17 21:00:00,135.93,219.08,42.56,39.74,12.1,1.95,17.49,84.09,66.97,5.89,55.89,0.75 +2020-01-17 22:00:00,149.03,234.58,40.72,41.41,13.23,2.11,18.89,91.27,76.51,5.84,50.87,0.76 +2020-01-17 23:00:00,156.2,245.88,41.0,41.26,13.81,1.86,18.89,76.22,59.56,5.96,48.7,1.12 +2020-01-18 00:00:00,147.19,227.69,36.67,39.42,12.93,1.6,16.47,65.89,50.03,5.52,40.91,0.84 +2020-01-18 01:00:00,127.92,200.66,32.83,37.71,10.35,1.35,14.76,68.18,54.77,4.9,34.18,0.27 +2020-01-18 02:00:00,120.34,196.07,31.29,37.16,10.11,1.31,14.43,72.54,60.51,4.43,25.77,0.26 +2020-01-18 03:00:00,116.18,186.25,33.24,37.42,10.02,1.32,13.5,76.58,63.78,4.98,25.04,0.28 +2020-01-18 04:00:00,113.74,178.32,35.94,37.63,8.86,1.28,13.87,70.26,55.6,4.98,24.1,0.19 +2020-01-18 05:00:00,99.81,154.81,40.24,36.92,8.67,1.16,13.17,60.78,41.97,4.94,22.77,0.21 +2020-01-18 06:00:00,90.02,134.56,38.95,36.78,8.35,1.1,12.75,54.86,35.85,4.35,21.37,0.09 +2020-01-18 07:00:00,82.83,120.26,39.06,36.91,8.5,1.05,12.4,51.91,33.85,4.12,20.33,0.2 +2020-01-18 08:00:00,81.38,121.3,38.0,36.7,8.21,1.06,12.32,52.22,33.97,4.27,21.1,0.28 +2020-01-18 09:00:00,83.18,131.38,37.86,37.08,8.39,1.09,12.14,56.34,38.89,4.15,21.33,0.27 +2020-01-18 10:00:00,87.49,140.94,41.76,37.77,8.79,1.2,14.72,61.42,42.45,4.14,22.6,0.21 +2020-01-18 11:00:00,98.44,163.47,48.98,37.77,8.87,1.29,15.81,62.71,39.27,4.53,27.8,0.22 +2020-01-18 12:00:00,115.39,186.39,52.25,39.0,8.65,1.34,20.07,60.32,34.13,4.49,30.1,0.44 +2020-01-18 13:00:00,138.74,207.32,53.6,40.7,8.54,1.32,25.78,57.17,27.24,4.85,31.48,0.4 +2020-01-18 14:00:00,150.6,219.71,49.43,42.01,9.87,1.22,34.03,46.2,18.73,4.64,31.65,0.51 +2020-01-18 15:00:00,146.74,216.2,41.72,40.68,9.57,1.04,43.12,36.32,12.89,4.32,29.83,0.5 +2020-01-18 16:00:00,121.41,187.33,41.85,40.33,9.62,1.04,43.75,37.42,14.46,3.84,28.66,0.3 +2020-01-18 17:00:00,112.11,178.17,42.57,39.35,10.02,0.99,36.86,38.9,16.05,3.56,25.79,0.08 +2020-01-18 18:00:00,114.79,187.84,52.6,39.04,9.48,1.11,22.9,48.41,21.26,4.28,24.93,0.08 +2020-01-18 19:00:00,132.34,225.98,58.26,40.38,10.1,1.46,15.15,67.49,36.17,4.47,30.26,0.24 +2020-01-18 20:00:00,162.56,279.11,57.02,42.83,10.42,1.92,16.46,86.21,59.74,5.98,40.58,0.37 +2020-01-18 21:00:00,190.3,318.82,54.7,44.61,11.46,2.07,18.76,92.25,67.85,6.8,45.04,0.68 +2020-01-18 22:00:00,199.94,321.57,48.79,46.25,11.27,1.8,18.27,72.97,50.34,6.7,42.66,0.7 +2020-01-18 23:00:00,173.65,273.67,43.22,44.89,10.64,1.52,16.8,61.76,41.6,5.67,33.39,0.61 +2020-01-19 00:00:00,156.31,238.07,40.6,43.41,10.17,1.28,16.63,54.8,34.78,4.7,24.28,0.2 +2020-01-19 01:00:00,140.06,216.94,39.19,41.62,9.4,1.2,14.98,53.49,34.38,4.15,19.63,0.13 +2020-01-19 02:00:00,133.01,208.04,38.0,41.05,8.98,1.11,14.55,51.52,33.34,4.16,20.1,0.22 +2020-01-19 03:00:00,128.89,203.39,37.49,40.36,8.72,1.1,14.57,46.27,27.65,3.68,16.78,0.2 +2020-01-19 04:00:00,122.96,186.51,36.56,40.26,8.43,1.02,16.92,41.47,22.74,3.4,16.81,0.09 +2020-01-19 05:00:00,115.6,169.75,33.02,39.59,7.9,0.94,16.65,35.36,18.07,3.01,13.89,0.09 +2020-01-19 06:00:00,94.4,134.21,29.19,38.13,7.52,0.89,18.61,30.8,15.53,2.85,11.54,0.06 +2020-01-19 07:00:00,86.05,115.39,26.96,37.73,7.1,0.82,22.96,29.01,14.84,2.52,9.5,0.07 +2020-01-19 08:00:00,95.44,136.81,27.67,38.71,7.34,0.81,26.07,30.11,15.6,2.24,8.88,0.06 +2020-01-19 09:00:00,117.62,172.22,28.12,36.82,7.4,0.8,28.47,30.07,15.42,2.1,9.1,0.06 +2020-01-19 10:00:00,125.19,177.87,29.45,36.23,8.25,0.85,30.41,30.02,14.6,2.28,8.62,0.12 +2020-01-19 11:00:00,135.28,186.16,29.94,36.3,8.27,0.88,32.81,29.44,13.57,2.32,9.5,0.04 +2020-01-19 12:00:00,134.83,183.42,30.93,36.79,8.41,0.93,38.36,29.16,12.66,2.37,11.05,0.07 +2020-01-19 13:00:00,127.15,181.67,33.38,37.31,9.05,0.86,42.77,30.63,12.05,2.45,12.56,0.05 +2020-01-19 14:00:00,120.76,183.5,34.8,37.23,8.83,0.81,46.33,31.59,10.94,2.43,13.39,0.05 +2020-01-19 15:00:00,112.15,179.59,30.94,37.24,8.65,0.77,46.16,27.28,10.21,2.35,12.33,0.05 +2020-01-19 16:00:00,110.16,174.95,30.93,37.14,8.77,0.79,41.77,27.82,11.13,2.52,12.39,0.05 +2020-01-19 17:00:00,109.95,180.17,32.93,36.45,9.0,0.85,33.74,30.53,13.05,2.37,13.55,0.07 +2020-01-19 18:00:00,114.85,194.79,37.87,36.02,9.9,0.93,24.82,35.34,15.67,2.71,15.58,0.06 +2020-01-19 19:00:00,128.53,201.32,42.19,36.98,10.0,1.04,18.97,40.49,18.61,3.12,15.93,0.08 +2020-01-19 20:00:00,140.03,215.96,42.2,37.98,9.38,1.15,16.99,43.49,21.74,3.57,15.69,0.06 +2020-01-19 21:00:00,153.18,229.59,39.81,39.05,9.34,1.23,17.79,43.73,23.63,3.36,15.42,0.06 +2020-01-19 22:00:00,154.58,228.24,36.08,39.58,9.06,1.12,19.16,38.58,20.28,3.18,13.86,0.15 +2020-01-19 23:00:00,144.07,211.71,32.07,39.06,8.64,0.96,20.22,32.07,15.91,2.84,10.03,0.13 +2020-01-20 00:00:00,128.87,190.16,31.16,38.12,8.59,0.87,18.85,29.18,12.63,2.42,9.04,0.03 +2020-01-20 01:00:00,115.81,177.51,29.94,37.1,9.08,0.9,19.0,27.31,11.29,2.5,8.65,0.07 +2020-01-20 02:00:00,105.16,161.52,26.74,36.48,8.53,0.86,21.42,24.37,9.65,2.34,7.79,0.05 +2020-01-20 03:00:00,95.18,148.01,26.12,35.65,7.79,0.85,20.97,23.83,9.37,2.11,7.76,0.04 +2020-01-20 04:00:00,88.14,136.9,25.25,35.43,7.3,0.84,22.11,22.69,8.65,2.13,7.12,0.02 +2020-01-20 05:00:00,85.28,133.06,24.72,36.15,6.95,0.86,23.36,22.71,9.36,2.05,7.16,0.05 +2020-01-20 06:00:00,87.82,135.0,24.2,36.92,7.01,0.93,23.75,23.59,11.04,2.08,6.73,0.05 +2020-01-20 07:00:00,92.48,138.65,26.92,36.95,7.42,0.97,21.73,29.85,16.39,2.11,6.76,0.03 +2020-01-20 08:00:00,99.29,151.83,31.98,36.84,7.81,0.98,20.36,37.75,22.14,2.27,7.42,0.05 +2020-01-20 09:00:00,110.21,172.92,34.19,36.47,8.69,1.03,20.05,37.88,21.27,2.4,8.13,0.06 +2020-01-20 10:00:00,122.98,191.15,33.21,36.41,9.25,1.1,22.0,38.52,22.11,2.69,8.76,0.06 +2020-01-20 11:00:00,137.12,204.18,32.25,37.13,9.87,1.14,25.22,35.83,20.0,2.85,10.92,0.06 +2020-01-20 12:00:00,151.17,220.02,35.0,38.87,9.78,1.12,30.9,36.67,18.31,2.99,15.5,0.06 +2020-01-20 13:00:00,155.34,225.72,41.66,41.02,8.92,1.18,37.96,39.35,15.83,3.32,16.28,0.11 +2020-01-20 14:00:00,154.13,237.48,44.29,41.16,9.51,1.15,38.87,41.89,18.3,3.39,20.11,0.35 +2020-01-20 15:00:00,151.72,245.61,46.03,41.34,9.36,1.15,38.38,41.96,17.15,3.48,18.77,0.29 +2020-01-20 16:00:00,149.96,248.4,48.63,40.98,9.12,1.14,34.66,43.04,16.99,3.87,19.51,0.25 +2020-01-20 17:00:00,151.48,259.7,51.67,40.23,9.49,1.18,28.19,46.04,18.75,3.95,21.55,0.06 +2020-01-20 18:00:00,152.6,255.96,52.76,39.68,10.58,1.41,22.48,48.12,20.26,4.12,23.4,0.67 +2020-01-20 19:00:00,159.82,267.8,54.88,39.37,10.97,1.76,17.1,69.72,42.39,5.15,29.7,0.2 +2020-01-20 20:00:00,186.63,317.16,52.46,41.75,11.88,2.27,17.72,86.89,64.16,6.42,37.19,0.56 +2020-01-20 21:00:00,218.47,359.38,50.61,44.49,12.85,2.86,21.08,106.17,88.43,7.29,44.92,0.69 +2020-01-20 22:00:00,251.77,412.5,48.39,46.66,15.11,3.3,21.78,129.31,115.79,10.51,58.35,0.69 +2020-01-20 23:00:00,261.0,425.48,43.9,47.39,15.85,3.47,23.4,134.9,126.18,11.2,63.82,0.71 +2020-01-21 00:00:00,259.35,422.61,42.71,48.23,16.44,3.34,24.0,145.33,134.43,9.72,56.89,0.78 +2020-01-21 01:00:00,251.55,402.62,40.51,48.33,15.33,2.67,22.77,131.72,124.17,8.98,50.39,1.03 +2020-01-21 02:00:00,243.24,381.44,39.16,49.03,13.51,2.33,22.85,112.49,102.74,8.86,50.35,1.23 +2020-01-21 03:00:00,224.68,348.71,36.5,46.09,11.79,2.13,21.17,98.79,88.27,7.17,44.1,0.98 +2020-01-21 04:00:00,215.28,331.68,36.03,44.01,10.79,1.86,20.01,88.4,77.2,6.88,35.84,1.1 +2020-01-21 05:00:00,201.32,311.06,34.19,44.38,10.31,1.75,19.73,86.03,75.02,6.22,31.91,1.02 +2020-01-21 06:00:00,201.16,310.21,35.44,45.53,10.56,1.82,19.75,87.55,75.97,6.2,35.53,1.08 +2020-01-21 07:00:00,207.11,321.02,34.31,45.89,10.42,1.76,21.27,90.42,80.3,6.15,37.66,0.9 +2020-01-21 08:00:00,203.98,321.82,36.46,46.76,11.24,1.83,22.88,99.09,89.9,6.0,35.32,1.17 +2020-01-21 09:00:00,207.02,338.75,43.15,47.02,11.09,1.83,20.19,92.92,77.62,6.04,32.99,1.13 +2020-01-21 10:00:00,208.76,354.94,54.7,47.14,10.8,1.68,19.39,79.25,54.14,5.45,26.57,1.24 +2020-01-21 11:00:00,222.91,364.62,61.81,48.63,11.53,1.58,23.25,69.76,38.81,5.09,23.84,1.65 +2020-01-21 12:00:00,243.27,367.48,55.24,48.87,11.0,1.3,31.49,52.56,22.24,4.45,20.75,1.14 +2020-01-21 13:00:00,222.94,326.62,50.74,48.31,10.47,1.21,40.72,46.4,17.32,4.09,21.95,1.04 +2020-01-21 14:00:00,195.52,291.45,48.78,48.3,10.93,1.14,48.43,41.79,15.04,4.13,25.17,0.73 +2020-01-21 15:00:00,178.22,271.02,54.23,47.91,11.06,1.15,49.57,45.22,15.43,3.98,32.12,0.49 +2020-01-21 16:00:00,185.12,283.48,47.73,48.96,11.54,1.12,48.29,35.01,9.24,3.78,36.36,0.46 +2020-01-21 17:00:00,197.2,290.6,52.73,47.83,9.52,1.21,40.62,38.34,9.81,4.04,38.03,0.35 +2020-01-21 18:00:00,200.65,301.63,61.16,46.57,11.29,1.34,27.78,46.63,13.48,4.67,43.89,0.35 +2020-01-21 19:00:00,209.69,330.39,68.01,48.03,12.86,1.73,20.8,66.61,32.17,5.56,38.31,0.5 +2020-01-21 20:00:00,234.84,374.62,62.58,50.12,13.81,2.15,21.39,81.33,52.27,7.06,42.67,0.42 +2020-01-21 21:00:00,255.65,407.55,57.08,51.27,14.52,2.61,25.05,98.69,75.03,7.6,59.36,0.37 +2020-01-21 22:00:00,278.36,439.83,53.07,52.33,16.03,3.19,24.75,122.55,102.42,9.46,60.83,0.65 +2020-01-21 23:00:00,299.66,468.7,50.04,52.91,16.95,3.58,26.28,142.92,140.65,10.04,61.54,0.61 +2020-01-22 00:00:00,295.95,469.42,45.58,51.0,18.05,3.38,28.5,145.85,138.99,8.83,59.19,0.74 +2020-01-22 01:00:00,277.72,428.59,44.32,47.11,16.79,2.9,34.05,154.15,147.62,8.94,55.45,1.75 +2020-01-22 02:00:00,269.27,405.8,42.24,45.13,15.94,2.84,36.36,158.44,154.05,9.36,48.68,2.19 +2020-01-22 03:00:00,259.0,380.4,38.49,44.28,15.33,2.71,30.41,146.75,145.58,9.52,52.28,1.45 +2020-01-22 04:00:00,252.44,362.91,38.05,44.56,14.64,2.61,25.85,139.24,137.08,9.48,50.88,1.37 +2020-01-22 05:00:00,244.21,339.68,37.51,44.5,13.26,2.43,21.16,135.22,131.22,9.71,48.38,1.4 +2020-01-22 06:00:00,222.82,305.47,37.19,42.85,11.69,2.2,19.22,113.13,106.19,9.12,45.59,1.74 +2020-01-22 07:00:00,170.15,236.1,37.46,41.79,10.17,1.8,14.8,85.4,74.39,8.07,41.52,0.78 +2020-01-22 08:00:00,148.49,210.45,39.04,41.05,8.52,1.6,14.57,73.57,59.16,7.11,33.06,0.25 +2020-01-22 09:00:00,149.59,229.39,38.53,40.76,8.93,1.67,14.37,64.72,48.91,6.35,28.88,0.42 +2020-01-22 10:00:00,156.5,250.62,42.43,40.56,8.68,1.62,17.0,58.15,40.05,6.0,24.7,0.38 +2020-01-22 11:00:00,168.62,276.8,51.07,41.59,8.6,1.62,19.68,59.19,35.55,6.1,23.84,0.23 +2020-01-22 12:00:00,191.15,291.02,50.5,41.17,7.92,1.52,25.86,53.21,28.08,5.98,24.4,0.4 +2020-01-22 13:00:00,201.7,290.12,51.47,44.14,7.79,1.36,34.67,48.46,19.15,6.16,28.0,0.47 +2020-01-22 14:00:00,196.6,276.66,46.4,44.66,7.93,1.24,37.91,42.79,16.89,5.9,29.0,0.13 +2020-01-22 15:00:00,186.91,265.66,40.15,46.18,7.91,1.17,35.8,39.32,15.24,5.33,25.85,0.07 +2020-01-22 16:00:00,170.52,246.87,37.77,46.81,8.42,1.03,35.07,34.74,14.83,4.69,24.2,0.02 +2020-01-22 17:00:00,149.8,221.26,37.82,47.79,9.33,1.01,33.62,33.78,14.49,4.1,24.13,0.05 +2020-01-22 18:00:00,143.09,212.29,44.09,48.01,8.87,1.28,24.64,40.12,16.81,4.79,26.91,0.14 +2020-01-22 19:00:00,147.65,237.28,54.57,46.22,9.86,1.76,15.87,65.3,40.21,5.68,38.09,0.29 +2020-01-22 20:00:00,181.4,292.0,55.8,48.35,10.86,2.24,16.93,81.23,57.15,7.03,40.67,0.68 +2020-01-22 21:00:00,210.59,326.48,53.95,49.95,11.8,2.35,20.02,84.38,55.92,7.04,42.49,1.5 +2020-01-22 22:00:00,211.14,322.47,51.69,49.69,11.33,1.88,18.62,71.89,48.28,6.59,39.39,1.58 +2020-01-22 23:00:00,167.69,249.67,47.0,45.82,10.26,1.34,16.11,60.27,38.26,6.1,31.96,1.02 +2020-01-23 00:00:00,121.37,182.32,42.63,42.95,9.86,1.01,14.54,50.4,29.56,4.26,20.43,0.74 +2020-01-23 01:00:00,94.19,145.83,39.07,41.09,9.55,0.86,13.86,40.96,21.28,3.57,16.56,0.21 +2020-01-23 02:00:00,84.13,129.01,36.28,41.15,8.84,0.72,18.53,34.41,15.93,3.15,14.4,0.1 +2020-01-23 03:00:00,83.84,126.25,30.26,39.11,8.44,0.7,19.56,28.24,12.44,2.49,11.57,0.03 +2020-01-23 04:00:00,83.2,122.32,29.97,38.69,7.53,0.67,19.75,27.05,12.44,2.25,10.41,0.0 +2020-01-23 05:00:00,85.45,123.81,29.74,39.25,7.28,0.64,20.41,27.14,12.15,2.18,10.57,0.0 +2020-01-23 06:00:00,90.24,126.69,30.95,38.59,7.96,0.68,19.27,29.2,13.9,2.11,9.71,0.0 +2020-01-23 07:00:00,86.02,120.97,32.25,38.59,7.92,0.73,16.98,32.87,17.32,2.05,9.01,0.0 +2020-01-23 08:00:00,87.22,131.33,35.44,38.68,8.3,0.84,15.79,39.31,22.87,2.53,10.58,0.0 +2020-01-23 09:00:00,91.43,147.56,35.38,37.75,9.66,0.94,18.96,40.04,22.8,2.66,10.91,0.01 +2020-01-23 10:00:00,89.81,152.26,32.23,36.67,9.87,0.85,25.02,34.8,18.07,2.57,11.08,0.0 +2020-01-23 11:00:00,80.64,145.9,28.78,35.96,9.56,0.77,33.61,29.04,14.11,2.24,10.03,0.01 +2020-01-23 12:00:00,61.43,136.91,26.31,34.7,8.31,0.76,39.61,25.3,11.19,2.03,12.28,0.04 +2020-01-23 13:00:00,45.42,133.04,24.59,34.15,8.08,0.61,44.95,23.2,10.43,1.8,12.78,0.01 +2020-01-23 14:00:00,38.04,137.86,24.99,32.96,7.71,0.58,49.43,22.66,9.51,1.73,11.04,0.0 +2020-01-23 15:00:00,37.06,132.53,25.69,30.95,7.3,0.58,50.79,22.6,8.83,1.51,10.13,0.0 +2020-01-23 16:00:00,34.36,110.54,24.31,30.23,7.14,0.58,49.28,21.6,8.86,1.79,11.13,0.0 +2020-01-23 17:00:00,32.83,94.63,25.23,33.02,7.34,0.59,47.9,22.22,9.35,1.68,11.29,0.01 +2020-01-23 18:00:00,37.05,94.63,37.52,30.39,8.31,0.68,38.61,33.09,14.18,2.02,12.33,0.05 +2020-01-23 19:00:00,54.04,125.5,49.76,31.94,9.89,0.96,25.22,42.34,15.8,2.53,19.25,0.12 +2020-01-23 20:00:00,80.5,159.07,51.88,34.95,9.74,1.08,23.38,43.77,16.6,3.82,22.19,0.09 +2020-01-23 21:00:00,91.29,172.91,53.02,36.22,10.13,1.12,20.88,46.23,18.2,3.69,27.08,0.27 +2020-01-23 22:00:00,98.2,178.86,51.08,36.95,10.24,1.11,19.3,44.98,18.2,3.26,23.4,0.04 +2020-01-23 23:00:00,99.03,171.93,48.91,36.83,10.03,1.01,19.78,41.88,15.7,2.63,18.92,0.03 +2020-01-24 00:00:00,93.87,160.17,47.3,36.48,9.28,0.93,21.42,40.26,15.03,2.37,16.42,0.01 +2020-01-24 01:00:00,84.73,138.36,43.77,35.37,9.19,0.8,22.39,36.94,13.11,2.23,14.34,0.02 +2020-01-24 02:00:00,79.62,123.26,40.22,34.54,8.66,0.72,23.79,34.36,12.56,2.57,10.15,0.01 +2020-01-24 03:00:00,72.83,114.86,36.94,32.56,8.15,0.67,23.5,31.06,11.08,1.97,12.19,0.01 +2020-01-24 04:00:00,74.57,113.98,34.01,32.5,7.82,0.66,23.96,28.66,10.27,1.66,11.96,0.02 +2020-01-24 05:00:00,73.97,110.1,32.54,33.16,7.62,0.65,24.71,27.46,9.88,2.13,9.22,0.01 +2020-01-24 06:00:00,71.22,105.88,33.55,33.43,7.38,0.64,22.24,28.68,10.96,2.07,8.69,0.01 +2020-01-24 07:00:00,71.7,110.92,38.1,33.8,8.29,0.72,18.43,34.86,15.29,2.18,8.75,0.01 +2020-01-24 08:00:00,76.64,128.67,41.6,34.7,8.79,0.85,17.24,43.34,22.87,2.34,9.07,0.0 +2020-01-24 09:00:00,84.89,156.03,40.69,33.7,10.07,0.95,22.89,42.15,21.84,2.75,10.65,0.0 +2020-01-24 10:00:00,88.49,167.09,38.16,33.34,10.69,0.95,29.28,39.31,20.28,2.72,10.44,0.02 +2020-01-24 11:00:00,82.25,158.62,36.46,33.1,11.54,0.9,38.94,35.14,16.46,2.77,11.8,0.01 +2020-01-24 12:00:00,73.1,143.63,32.58,32.2,11.08,0.78,48.23,31.84,14.68,2.37,14.05,0.01 +2020-01-24 13:00:00,62.64,137.59,32.66,32.35,10.63,0.7,54.27,29.32,12.0,2.07,13.88,0.02 +2020-01-24 14:00:00,55.13,127.44,31.09,33.06,10.66,0.65,60.91,27.11,10.85,1.68,11.27,0.01 +2020-01-24 15:00:00,49.61,117.93,32.95,32.21,15.57,0.64,58.85,28.16,10.7,1.61,15.7,0.03 +2020-01-24 16:00:00,48.88,124.6,33.97,33.0,13.72,0.62,58.94,30.49,13.14,1.62,10.42,0.01 +2020-01-24 17:00:00,47.09,121.18,36.71,31.98,9.82,0.65,55.66,32.15,13.23,1.72,11.78,0.01 +2020-01-24 18:00:00,49.82,122.99,46.05,31.71,10.64,0.82,43.45,40.3,12.46,2.02,13.32,0.02 +2020-01-24 19:00:00,67.6,148.06,63.01,33.6,12.06,1.14,19.64,56.54,24.57,3.19,21.5,0.02 +2020-01-24 20:00:00,89.97,199.33,70.18,35.05,13.6,1.58,11.8,72.79,39.52,4.27,25.77,0.05 +2020-01-24 21:00:00,116.46,229.58,71.78,37.23,14.0,1.88,11.28,88.65,54.47,4.65,28.32,0.09 +2020-01-24 22:00:00,139.19,269.94,71.3,39.55,13.48,2.23,10.56,109.0,77.2,5.19,31.0,0.19 +2020-01-24 23:00:00,161.57,313.32,70.39,42.81,14.85,2.71,10.37,132.64,105.88,5.69,38.52,0.74 +2020-01-25 00:00:00,179.87,342.6,68.55,42.68,14.05,2.49,10.8,138.91,114.63,5.8,38.75,0.49 +2020-01-25 01:00:00,165.59,290.88,65.03,42.37,12.53,1.85,10.3,128.47,101.31,7.31,38.75,0.26 +2020-01-25 02:00:00,150.46,251.71,60.35,41.76,11.93,1.66,10.23,117.46,94.88,7.63,32.84,0.17 +2020-01-25 03:00:00,144.38,230.84,55.0,40.2,11.64,1.46,9.85,107.55,87.23,6.52,26.92,0.18 +2020-01-25 04:00:00,144.73,223.37,54.99,40.41,10.66,1.27,9.45,91.2,68.0,5.15,22.24,0.17 +2020-01-25 05:00:00,145.77,218.37,53.47,40.08,9.3,1.09,10.04,78.49,54.38,4.15,19.56,0.14 +2020-01-25 06:00:00,141.39,213.77,48.32,40.41,9.12,1.09,9.31,84.13,64.0,3.84,17.8,0.23 +2020-01-25 07:00:00,136.58,211.19,46.63,40.87,8.95,1.2,9.46,92.53,75.21,3.72,17.45,0.29 +2020-01-25 08:00:00,141.39,228.74,48.85,40.54,9.63,1.41,10.13,112.43,96.17,4.28,17.72,0.3 +2020-01-25 09:00:00,158.09,262.86,63.06,43.16,10.58,1.34,10.94,105.48,79.65,4.42,18.01,0.37 +2020-01-25 10:00:00,147.69,254.38,62.91,43.69,12.51,1.14,15.9,74.18,44.19,3.74,14.54,0.47 +2020-01-25 11:00:00,137.68,246.42,58.88,41.9,14.25,1.04,26.12,60.28,30.59,3.31,15.13,0.16 +2020-01-25 12:00:00,128.5,225.93,52.91,40.55,15.45,0.99,40.49,49.4,21.87,3.53,17.16,0.22 +2020-01-25 13:00:00,110.35,216.81,42.39,38.64,13.11,0.86,57.83,38.4,15.87,3.02,16.25,0.09 +2020-01-25 14:00:00,84.69,156.64,37.67,37.22,12.3,0.72,62.1,33.94,13.86,3.01,14.28,0.08 +2020-01-25 15:00:00,70.3,135.56,37.16,36.49,11.2,0.67,63.95,32.76,12.95,2.66,13.33,0.1 +2020-01-25 16:00:00,67.46,127.71,35.52,36.45,11.43,0.69,67.75,30.72,11.66,2.3,16.43,0.08 +2020-01-25 17:00:00,68.27,134.32,36.97,35.08,13.13,0.7,60.31,32.83,13.41,2.27,18.71,0.06 +2020-01-25 18:00:00,75.13,147.98,53.07,41.53,12.64,0.92,39.74,44.77,17.12,2.86,18.78,0.05 +2020-01-25 19:00:00,93.58,196.89,71.24,43.3,13.06,1.37,22.3,67.34,30.82,3.99,25.35,0.05 +2020-01-25 20:00:00,130.73,259.92,73.99,40.36,13.06,1.96,18.55,84.08,47.72,5.19,41.42,0.32 +2020-01-25 21:00:00,183.14,346.88,76.26,44.52,14.47,2.87,21.97,118.78,85.62,6.03,46.01,1.03 +2020-01-25 22:00:00,222.93,411.48,75.04,49.59,15.43,3.25,22.75,139.95,110.51,8.05,64.56,1.86 +2020-01-25 23:00:00,252.63,438.42,73.22,51.16,16.29,3.45,22.87,156.84,120.31,8.14,60.7,1.69 +2020-01-26 00:00:00,267.85,460.88,67.7,51.86,15.94,3.46,27.27,152.85,130.15,8.36,59.91,1.5 +2020-01-26 01:00:00,282.69,459.74,60.54,52.9,14.36,3.1,26.28,153.82,133.66,9.11,60.35,1.32 +2020-01-26 02:00:00,286.34,450.23,54.05,53.71,13.7,2.95,26.73,150.86,132.88,9.6,56.25,1.55 +2020-01-26 03:00:00,276.98,419.25,50.39,51.79,13.62,2.68,24.4,139.41,122.46,9.48,54.69,1.98 +2020-01-26 04:00:00,274.83,402.67,46.86,52.1,13.45,2.56,23.48,130.51,118.03,9.14,56.74,1.14 +2020-01-26 05:00:00,272.6,395.03,45.23,51.86,12.77,2.47,24.55,127.54,115.15,8.84,55.55,1.05 +2020-01-26 06:00:00,274.46,395.05,45.38,50.95,11.89,2.67,22.91,129.84,117.64,8.85,54.6,1.08 +2020-01-26 07:00:00,275.15,394.47,46.09,52.71,10.98,3.01,22.41,116.49,98.27,8.75,55.55,1.17 +2020-01-26 08:00:00,264.12,380.64,47.42,54.17,11.07,2.69,20.96,106.74,90.87,7.7,48.94,1.23 +2020-01-26 09:00:00,270.73,386.02,58.29,54.08,11.62,1.96,20.68,97.65,73.11,7.49,40.13,1.68 +2020-01-26 10:00:00,263.34,371.01,67.36,52.93,11.68,1.68,25.67,76.15,42.83,6.21,26.06,1.14 +2020-01-26 11:00:00,228.35,309.68,50.2,48.85,12.5,1.38,36.29,51.87,25.59,4.36,16.94,0.63 +2020-01-26 12:00:00,170.07,225.0,39.99,46.43,11.63,1.38,47.55,39.99,18.87,3.47,12.94,0.33 +2020-01-26 13:00:00,126.06,178.84,35.16,44.27,10.67,0.75,56.87,33.79,14.75,2.75,11.39,0.22 +2020-01-26 14:00:00,94.91,144.06,33.3,43.67,11.4,0.69,58.72,30.48,12.5,2.48,9.67,0.16 +2020-01-26 15:00:00,79.66,126.8,32.32,43.22,11.59,0.66,61.5,29.25,11.91,1.99,8.48,0.16 +2020-01-26 16:00:00,74.25,123.46,30.99,42.77,11.18,0.6,61.47,27.36,10.69,1.87,8.45,0.18 +2020-01-26 17:00:00,74.67,120.77,33.69,42.22,12.01,0.61,54.59,29.2,11.5,1.76,9.24,0.13 +2020-01-26 18:00:00,71.86,126.3,44.21,42.41,12.2,0.75,37.73,37.99,15.09,2.22,9.55,0.17 +2020-01-26 19:00:00,89.79,157.69,58.3,42.93,11.79,1.23,22.4,53.12,24.34,2.81,17.58,0.12 +2020-01-26 20:00:00,134.39,230.33,67.89,44.43,13.39,2.15,18.21,95.76,65.46,3.89,24.03,0.17 +2020-01-26 21:00:00,187.94,327.0,70.72,46.71,14.63,3.07,20.44,136.98,110.96,5.5,32.88,0.75 +2020-01-26 22:00:00,235.36,410.03,70.4,52.08,16.09,3.71,21.81,165.37,143.83,6.87,42.27,1.06 +2020-01-26 23:00:00,252.35,423.28,66.12,52.18,17.27,3.9,21.81,168.44,150.5,7.28,41.53,1.09 +2020-01-27 00:00:00,250.17,398.8,62.0,53.46,17.0,3.59,23.67,170.2,144.26,7.24,42.56,1.41 +2020-01-27 01:00:00,257.11,396.09,59.32,54.32,15.38,3.49,25.68,176.47,153.24,6.98,41.37,2.1 +2020-01-27 02:00:00,260.43,390.59,58.69,54.64,13.66,3.28,26.17,174.45,151.47,6.66,40.62,2.15 +2020-01-27 03:00:00,253.79,377.15,54.5,53.11,13.19,3.17,25.98,171.63,163.05,6.16,36.61,2.13 +2020-01-27 04:00:00,243.27,361.3,54.14,53.95,13.02,2.97,22.82,164.45,155.59,5.9,35.49,2.06 +2020-01-27 05:00:00,234.51,344.92,51.72,53.99,12.91,2.89,21.64,150.12,153.7,6.36,36.24,1.69 +2020-01-27 06:00:00,230.31,334.44,53.06,57.63,13.78,2.71,21.3,165.3,152.77,6.59,37.03,1.29 +2020-01-27 07:00:00,232.89,338.57,56.17,58.49,13.21,2.41,20.47,158.38,138.43,6.95,34.21,1.26 +2020-01-27 08:00:00,238.36,352.4,58.11,55.68,13.4,2.63,20.55,175.06,162.97,6.75,32.8,1.25 +2020-01-27 09:00:00,248.02,390.06,68.44,55.41,15.52,2.86,22.44,181.13,151.59,7.04,33.39,1.36 +2020-01-27 10:00:00,252.96,414.71,84.86,55.49,16.1,2.79,22.47,184.47,158.11,7.32,34.14,1.1 +2020-01-27 11:00:00,253.11,421.01,99.57,58.75,16.6,2.84,22.19,166.25,133.23,7.2,38.39,1.33 +2020-01-27 12:00:00,251.82,406.58,116.05,61.25,19.8,2.47,23.19,148.62,96.44,7.03,36.71,1.9 +2020-01-27 13:00:00,239.03,398.79,98.69,57.92,20.51,1.81,28.72,99.18,50.18,6.58,30.78,2.85 +2020-01-27 14:00:00,199.33,334.21,96.2,58.4,18.03,1.6,36.11,80.96,37.87,5.59,28.36,1.93 +2020-01-27 15:00:00,177.58,313.55,84.47,54.39,16.3,1.46,43.54,70.19,25.09,5.36,37.17,1.77 +2020-01-27 16:00:00,158.11,287.86,67.02,51.31,12.36,1.15,50.49,51.73,17.32,4.93,38.96,0.91 +2020-01-27 17:00:00,125.52,237.28,65.66,47.09,13.4,1.1,41.71,47.93,13.75,4.8,45.6,0.91 +2020-01-27 18:00:00,120.43,240.79,58.34,48.45,13.69,1.19,31.0,43.76,13.28,4.75,52.35,1.03 +2020-01-27 19:00:00,148.15,261.0,53.09,52.09,12.7,1.34,27.14,39.11,11.3,4.59,42.36,0.49 +2020-01-27 20:00:00,195.62,278.45,55.99,50.54,13.01,1.48,23.59,42.36,12.6,4.76,37.9,0.47 +2020-01-27 21:00:00,199.56,273.52,55.2,50.91,13.26,1.35,21.33,44.65,15.95,5.17,40.27,0.51 +2020-01-27 22:00:00,162.26,230.55,49.92,46.79,13.06,1.09,19.28,41.64,16.77,4.65,29.72,0.5 +2020-01-27 23:00:00,107.05,159.17,49.05,43.74,13.41,0.96,16.94,41.94,17.0,4.02,21.86,0.13 +2020-01-28 00:00:00,95.99,148.71,50.99,43.83,13.46,1.06,14.65,44.79,18.75,4.29,20.48,0.05 +2020-01-28 01:00:00,111.78,172.64,45.68,44.57,11.21,1.16,16.39,44.31,22.32,4.38,22.29,0.05 +2020-01-28 02:00:00,105.48,154.38,40.08,44.39,10.19,0.94,18.3,38.56,18.31,3.59,21.1,0.05 +2020-01-28 03:00:00,88.99,121.49,36.16,41.27,9.52,0.79,17.5,31.49,12.97,3.07,17.36,0.05 +2020-01-28 04:00:00,83.25,109.19,34.79,41.13,9.62,0.89,18.1,29.09,11.26,2.82,14.53,0.05 +2020-01-28 05:00:00,87.56,116.68,34.72,40.27,9.29,0.93,16.46,30.4,13.22,2.67,12.78,0.03 +2020-01-28 06:00:00,92.7,120.74,37.64,41.59,9.11,0.84,15.84,35.02,16.18,2.7,11.33,0.03 +2020-01-28 07:00:00,90.38,120.3,37.31,41.05,9.62,0.83,16.89,32.65,14.58,2.49,12.26,0.04 +2020-01-28 08:00:00,81.97,111.79,40.58,40.79,9.3,0.95,15.35,37.49,17.71,2.47,14.92,0.04 +2020-01-28 09:00:00,77.06,103.07,41.5,41.89,10.12,1.08,17.11,40.73,20.96,2.67,16.93,0.02 +2020-01-28 10:00:00,80.01,108.95,40.51,41.63,10.89,1.4,17.52,38.67,19.0,2.82,17.59,0.05 +2020-01-28 11:00:00,94.84,129.54,41.63,41.84,10.82,1.27,18.98,39.17,19.21,3.0,21.76,0.03 +2020-01-28 12:00:00,109.82,150.79,37.31,43.03,11.53,1.22,25.99,34.47,15.71,3.32,31.16,0.05 +2020-01-28 13:00:00,121.13,170.67,37.01,42.56,13.02,1.07,35.91,31.24,12.53,3.23,27.03,0.04 +2020-01-28 14:00:00,119.48,173.8,35.97,42.33,13.89,1.01,44.47,29.26,11.26,2.95,17.34,0.11 +2020-01-28 15:00:00,119.89,179.5,33.75,43.47,13.94,0.98,45.84,26.65,9.36,2.94,17.56,0.04 +2020-01-28 16:00:00,124.36,187.17,34.85,44.04,12.71,1.56,42.87,27.54,9.23,2.73,13.33,0.04 +2020-01-28 17:00:00,123.86,186.99,37.95,44.12,11.83,1.5,39.17,29.04,8.96,2.62,15.04,0.02 +2020-01-28 18:00:00,115.17,185.59,42.59,42.68,11.54,1.77,33.45,32.31,9.99,2.81,16.86,0.09 +2020-01-28 19:00:00,109.45,180.66,51.93,42.35,10.92,1.82,23.22,37.06,18.41,3.24,18.44,0.09 +2020-01-28 20:00:00,115.63,182.29,50.17,42.67,13.21,2.13,18.85,44.86,21.07,3.7,19.08,0.06 +2020-01-28 21:00:00,125.09,172.73,52.77,42.48,9.83,1.45,17.98,51.21,26.73,3.92,21.28,0.53 +2020-01-28 22:00:00,118.62,149.28,55.61,45.07,10.31,1.63,14.58,60.16,36.18,3.94,19.97,0.22 +2020-01-28 23:00:00,114.38,141.9,56.76,47.13,10.9,2.0,13.48,65.17,44.58,4.4,22.19,0.39 +2020-01-29 00:00:00,112.94,144.97,53.72,47.8,10.75,2.22,14.66,72.55,51.77,5.04,26.79,0.58 +2020-01-29 01:00:00,113.52,152.12,46.25,45.91,9.58,1.72,16.11,62.94,41.58,5.52,24.6,0.21 +2020-01-29 02:00:00,100.44,141.09,36.84,42.02,8.41,0.85,15.7,39.15,20.36,3.71,16.95,0.12 +2020-01-29 03:00:00,78.13,111.75,34.03,37.81,7.51,0.75,13.66,36.18,19.7,2.64,13.08,0.04 +2020-01-29 04:00:00,71.83,106.45,33.0,36.25,7.2,0.74,13.05,36.8,20.8,2.36,13.03,0.04 +2020-01-29 05:00:00,64.54,102.22,33.85,35.35,6.9,0.72,12.91,38.65,23.03,2.48,12.75,0.05 +2020-01-29 06:00:00,64.26,102.79,40.65,36.57,6.94,0.77,12.41,48.47,33.37,2.67,11.98,0.08 +2020-01-29 07:00:00,66.86,107.6,41.52,39.08,7.82,2.3,11.57,56.4,44.24,2.5,13.38,0.04 +2020-01-29 08:00:00,76.96,121.28,39.13,39.54,9.18,2.18,12.91,58.93,46.08,2.64,17.82,0.11 +2020-01-29 09:00:00,88.97,140.45,46.54,39.88,10.31,1.01,14.76,59.04,40.18,2.99,18.3,0.03 +2020-01-29 10:00:00,89.34,136.58,42.68,36.97,11.65,0.98,18.44,42.55,21.79,2.55,15.1,0.03 +2020-01-29 11:00:00,78.48,117.69,33.89,34.11,12.64,0.81,28.12,30.9,13.07,2.34,18.22,0.03 +2020-01-29 12:00:00,71.71,114.08,36.04,34.56,12.17,0.71,38.85,33.36,15.35,2.16,24.67,0.03 +2020-01-29 13:00:00,64.22,104.57,38.27,34.46,11.29,0.73,46.65,21.75,8.49,2.2,20.32,0.02 +2020-01-29 14:00:00,57.17,100.74,32.61,31.79,9.79,0.81,51.17,20.24,7.54,1.9,17.32,0.06 +2020-01-29 15:00:00,51.89,91.21,31.08,34.87,9.4,0.72,52.14,19.81,7.97,1.7,17.39,0.02 +2020-01-29 16:00:00,43.64,80.91,25.91,33.84,8.21,0.74,50.08,21.08,17.19,1.63,14.31,0.01 +2020-01-29 17:00:00,39.27,82.12,33.26,34.44,8.71,0.8,43.73,29.27,17.64,1.9,13.78,0.02 +2020-01-29 18:00:00,44.46,101.52,42.94,36.65,9.23,0.92,30.81,37.64,16.74,2.3,16.08,0.03 +2020-01-29 19:00:00,53.06,130.9,59.96,39.26,10.06,1.32,15.81,64.95,37.34,3.26,24.2,0.2 +2020-01-29 20:00:00,77.81,187.44,61.14,38.94,11.24,1.75,14.19,76.44,49.62,4.49,32.33,0.77 +2020-01-29 21:00:00,106.1,230.55,56.33,39.03,11.81,1.92,15.45,75.05,49.69,5.07,34.97,0.54 +2020-01-29 22:00:00,120.37,245.0,57.25,40.66,12.56,2.15,16.18,86.51,61.1,5.21,42.21,0.89 +2020-01-29 23:00:00,134.79,265.96,56.83,42.4,12.96,2.13,15.8,99.0,76.97,5.26,36.41,0.53 +2020-01-30 00:00:00,134.56,258.54,56.64,39.17,11.93,1.8,15.87,88.04,69.04,5.59,34.09,0.56 +2020-01-30 01:00:00,125.04,233.27,51.94,39.67,10.52,1.4,15.21,73.31,49.75,5.21,27.07,0.32 +2020-01-30 02:00:00,108.12,198.98,50.56,38.73,8.9,1.1,16.2,55.46,31.86,4.42,20.57,0.18 +2020-01-30 03:00:00,92.75,161.3,48.07,35.46,8.41,0.94,15.64,50.4,30.54,3.99,18.02,0.15 +2020-01-30 04:00:00,89.12,144.03,45.36,35.8,7.81,0.87,15.68,44.9,25.8,3.18,15.73,0.18 +2020-01-30 05:00:00,86.83,135.35,39.95,33.48,8.21,0.83,15.67,42.05,22.04,2.79,14.97,0.13 +2020-01-30 06:00:00,80.61,125.57,41.69,36.26,8.77,0.84,14.33,43.93,25.79,2.9,14.1,0.13 +2020-01-30 07:00:00,83.42,129.43,42.41,38.73,8.94,0.97,13.85,53.67,34.34,3.06,13.19,0.09 +2020-01-30 08:00:00,92.16,151.27,44.87,39.97,9.4,1.21,14.03,70.39,53.41,3.02,14.43,0.1 +2020-01-30 09:00:00,107.71,187.43,48.33,38.95,10.98,1.28,15.28,66.08,49.2,3.62,15.32,0.12 +2020-01-30 10:00:00,122.72,205.82,45.25,40.15,13.59,1.25,18.97,58.02,34.08,3.42,13.82,0.21 +2020-01-30 11:00:00,127.54,207.56,43.89,38.3,14.36,1.08,25.08,45.21,23.16,3.36,14.37,0.2 +2020-01-30 12:00:00,116.17,187.21,40.62,37.69,11.92,0.97,34.55,37.14,16.44,3.12,18.74,0.08 +2020-01-30 13:00:00,91.65,159.93,36.92,36.31,10.17,0.82,45.49,30.43,14.95,3.27,20.37,0.09 +2020-01-30 14:00:00,80.14,147.75,33.28,36.18,9.8,0.79,50.25,27.91,12.15,3.12,17.57,0.11 +2020-01-30 15:00:00,69.67,132.49,30.39,35.83,8.94,0.74,47.8,26.57,12.26,2.87,15.32,0.12 +2020-01-30 16:00:00,53.41,112.68,31.5,33.76,8.61,0.67,46.69,31.01,15.8,2.17,12.65,0.03 +2020-01-30 17:00:00,40.49,95.46,31.25,33.0,7.5,0.67,45.04,27.34,14.33,1.81,14.87,0.03 +2020-01-30 18:00:00,40.09,94.04,36.51,33.93,8.08,0.72,33.27,31.7,13.27,1.96,18.13,0.06 +2020-01-30 19:00:00,48.41,120.61,52.07,33.58,9.3,1.02,18.86,50.1,27.08,2.74,18.41,0.09 +2020-01-30 20:00:00,73.07,175.77,58.67,34.61,10.49,1.37,14.05,65.0,37.82,3.93,30.05,0.1 +2020-01-30 21:00:00,101.53,219.15,56.68,36.45,11.12,1.52,15.99,66.45,42.01,4.6,33.15,0.09 +2020-01-30 22:00:00,113.66,230.32,57.78,37.31,11.72,1.57,16.65,69.01,41.33,5.07,32.88,0.1 +2020-01-30 23:00:00,118.64,228.25,56.26,39.23,12.02,1.46,17.08,67.56,42.42,4.5,28.19,0.12 +2020-01-31 00:00:00,112.96,216.86,52.74,37.33,9.32,1.22,15.69,60.64,35.16,4.21,22.91,0.13 +2020-01-31 01:00:00,103.61,188.29,51.26,37.83,8.8,1.04,14.57,59.95,36.1,3.74,20.19,0.12 +2020-01-31 02:00:00,95.85,166.6,45.56,37.74,8.6,0.94,14.51,49.01,26.54,3.19,17.14,0.12 +2020-01-31 03:00:00,91.59,156.92,43.55,32.12,8.71,0.83,14.53,48.13,26.05,3.02,15.35,0.12 +2020-01-31 04:00:00,88.72,146.2,42.68,31.0,8.69,0.8,14.11,44.89,24.72,3.06,15.29,0.17 +2020-01-31 05:00:00,90.19,149.08,51.38,31.54,8.8,0.81,13.91,53.25,26.77,3.2,13.54,0.08 +2020-01-31 06:00:00,97.84,157.04,43.94,32.94,8.54,0.86,15.14,53.29,29.71,2.74,12.53,0.09 +2020-01-31 07:00:00,99.99,158.24,43.27,36.1,8.93,0.96,15.16,55.02,34.74,2.97,14.12,0.11 +2020-01-31 08:00:00,106.19,169.62,43.32,37.59,9.1,1.14,14.2,63.73,44.95,2.97,13.34,0.1 +2020-01-31 09:00:00,106.95,181.37,45.46,37.53,9.09,1.21,15.41,64.66,47.87,3.26,12.64,0.13 +2020-01-31 10:00:00,105.52,182.01,43.74,35.9,9.57,1.17,20.71,51.06,31.34,3.03,12.76,0.1 +2020-01-31 11:00:00,111.94,181.36,43.75,34.8,10.25,1.08,25.29,44.81,24.23,3.36,15.68,0.07 +2020-01-31 12:00:00,108.77,181.64,41.66,34.23,10.18,1.03,31.24,40.16,20.8,3.78,19.37,2.06 +2020-01-31 13:00:00,96.77,166.36,38.77,32.73,10.23,0.94,41.7,35.58,21.12,3.99,21.06,0.79 +2020-01-31 14:00:00,75.69,140.54,40.95,31.26,10.36,0.86,47.25,35.63,16.65,3.4,17.87,0.11 +2020-01-31 15:00:00,56.99,116.37,35.34,31.95,9.19,0.74,51.15,31.03,15.73,2.64,14.11,0.13 +2020-01-31 16:00:00,46.34,104.29,34.64,31.46,9.26,0.75,49.98,32.96,19.71,2.47,13.75,0.03 +2020-01-31 17:00:00,43.88,102.11,40.41,31.3,9.4,0.74,47.39,35.93,16.24,2.63,14.88,0.1 +2020-01-31 18:00:00,46.71,113.35,46.22,31.27,10.6,0.83,35.73,38.59,15.62,2.87,19.79,0.11 +2020-01-31 19:00:00,63.06,154.79,62.75,32.56,11.31,1.1,21.4,51.03,22.9,3.83,27.39,0.07 +2020-01-31 20:00:00,88.44,190.28,64.83,32.75,11.5,1.44,16.63,67.8,35.2,4.38,49.67,0.35 +2020-01-31 21:00:00,107.7,225.3,62.68,33.66,11.89,1.93,15.44,83.62,55.5,5.09,52.64,1.29 +2020-01-31 22:00:00,126.48,267.95,61.25,35.5,12.47,2.08,15.96,94.16,70.04,5.74,50.9,0.9 +2020-01-31 23:00:00,136.79,271.36,56.13,35.66,12.83,1.92,17.44,88.16,65.59,5.72,45.66,0.55 +2020-02-01 00:00:00,135.04,249.28,56.25,34.53,10.91,1.78,17.35,83.02,60.38,5.6,36.64,0.68 +2020-02-01 01:00:00,129.88,236.85,48.74,35.16,10.21,1.53,18.69,76.82,56.6,5.23,29.05,0.57 +2020-02-01 02:00:00,125.66,227.02,48.13,36.29,9.3,1.46,19.55,74.16,56.22,5.17,25.96,0.42 +2020-02-01 03:00:00,125.11,215.6,40.7,32.19,9.06,1.32,16.58,72.65,56.46,5.23,23.33,0.38 +2020-02-01 04:00:00,120.78,217.3,39.05,32.89,8.65,1.29,16.84,78.39,62.28,4.69,21.76,0.18 +2020-02-01 05:00:00,126.72,215.07,37.04,33.09,8.61,1.28,16.14,87.69,75.86,4.59,21.67,0.2 +2020-02-01 06:00:00,127.59,224.08,36.33,32.69,9.34,1.34,15.16,100.19,91.74,4.58,22.66,0.2 +2020-02-01 07:00:00,132.98,231.75,34.77,33.07,9.66,1.56,15.68,120.73,109.28,5.25,25.29,0.17 +2020-02-01 08:00:00,145.73,250.48,39.04,37.4,11.49,2.06,16.07,142.47,140.89,5.67,28.03,0.14 +2020-02-01 09:00:00,165.74,304.54,55.35,41.78,12.23,2.18,17.67,158.85,147.89,6.95,31.39,0.18 +2020-02-01 10:00:00,168.89,306.0,73.91,42.62,12.52,1.62,20.61,108.84,78.23,7.08,28.69,0.63 +2020-02-01 11:00:00,136.95,233.3,57.05,38.18,12.05,1.2,29.23,62.18,34.43,4.96,23.44,2.49 +2020-02-01 12:00:00,120.26,190.15,45.74,36.53,11.22,0.91,42.69,42.92,24.09,3.98,19.42,1.64 +2020-02-01 13:00:00,89.7,156.62,37.81,34.97,10.69,0.8,54.16,33.51,18.23,3.46,23.81,2.23 +2020-02-01 14:00:00,73.08,132.34,32.51,33.97,9.68,0.72,59.85,28.28,11.4,3.27,17.61,0.15 +2020-02-01 15:00:00,66.57,119.5,29.84,34.73,9.28,0.68,63.33,25.7,10.07,2.86,18.87,0.01 +2020-02-01 16:00:00,64.57,121.59,31.07,34.33,8.9,0.68,61.93,26.28,10.25,2.38,18.19,0.09 +2020-02-01 17:00:00,65.48,123.22,31.54,35.07,8.4,0.69,57.57,26.85,10.34,2.56,18.5,0.03 +2020-02-01 18:00:00,66.12,126.41,36.68,35.93,9.14,0.77,43.3,29.39,10.43,2.96,23.93,0.09 +2020-02-01 19:00:00,75.44,145.0,46.5,36.01,9.57,0.99,27.57,37.14,13.1,3.88,28.89,0.29 +2020-02-01 20:00:00,89.65,177.19,51.74,36.42,10.23,1.22,20.71,43.75,16.93,4.28,41.03,0.38 +2020-02-01 21:00:00,104.73,203.76,51.59,37.81,9.94,1.31,18.0,45.36,19.2,4.67,45.29,0.8 +2020-02-01 22:00:00,115.48,208.48,50.36,38.32,9.66,1.37,16.69,49.81,25.18,4.33,35.48,0.84 +2020-02-01 23:00:00,118.98,213.13,50.19,38.84,9.81,1.55,15.9,64.98,42.58,4.5,31.24,0.74 +2020-02-02 00:00:00,121.62,230.44,49.06,36.42,10.28,1.6,15.78,78.52,57.5,4.45,31.1,0.97 +2020-02-02 01:00:00,125.79,232.07,48.25,38.43,11.12,1.51,15.77,87.18,68.52,4.61,30.02,1.01 +2020-02-02 02:00:00,130.58,234.58,47.5,39.33,10.54,1.35,16.86,77.84,57.77,5.23,27.89,0.62 +2020-02-02 03:00:00,132.05,217.39,46.92,35.52,10.28,1.17,15.59,62.13,41.02,4.96,24.85,0.33 +2020-02-02 04:00:00,126.98,200.92,43.55,35.45,9.72,1.0,16.71,50.71,31.77,4.2,18.24,0.24 +2020-02-02 05:00:00,118.7,182.23,41.54,34.24,9.15,0.93,15.65,49.17,30.99,3.72,15.17,0.25 +2020-02-02 06:00:00,113.23,174.57,40.28,36.65,8.53,0.98,14.55,53.64,35.43,3.34,13.95,0.21 +2020-02-02 07:00:00,114.52,176.26,41.18,38.2,8.03,1.03,14.38,55.8,38.0,3.48,12.42,0.14 +2020-02-02 08:00:00,115.34,180.14,42.7,38.6,8.92,1.14,14.64,60.23,41.82,3.81,12.08,0.16 +2020-02-02 09:00:00,121.12,192.45,43.86,36.65,9.4,1.17,17.99,56.1,36.35,4.19,13.31,0.33 +2020-02-02 10:00:00,126.22,195.67,43.64,36.16,9.79,1.1,22.99,49.76,28.89,4.17,13.24,0.19 +2020-02-02 11:00:00,130.65,195.55,42.76,35.16,10.68,1.04,30.4,43.73,22.4,3.96,13.19,1.58 +2020-02-02 12:00:00,131.6,198.27,38.47,34.77,10.92,0.96,42.75,35.05,15.47,3.85,14.22,0.83 +2020-02-02 13:00:00,125.91,192.08,34.8,34.48,11.23,0.87,55.61,28.63,11.71,3.41,14.38,1.57 +2020-02-02 14:00:00,112.35,181.3,31.69,34.81,11.61,0.78,66.15,26.57,10.0,3.14,14.39,0.05 +2020-02-02 15:00:00,97.74,157.04,31.05,34.67,10.85,0.73,67.64,26.01,9.95,2.54,12.59,0.06 +2020-02-02 16:00:00,84.37,139.25,29.71,34.15,9.95,0.7,65.52,25.34,9.95,2.38,12.66,0.17 +2020-02-02 17:00:00,72.72,128.63,32.72,34.11,9.98,0.69,60.52,27.87,10.97,2.38,11.81,0.08 +2020-02-02 18:00:00,72.52,129.74,41.19,36.57,9.88,0.93,47.57,36.31,15.53,2.42,13.8,0.1 +2020-02-02 19:00:00,86.4,162.92,58.98,37.78,10.04,1.38,25.68,57.27,27.03,3.16,19.38,0.15 +2020-02-02 20:00:00,123.59,225.28,65.87,38.21,11.12,1.75,17.63,65.45,33.37,4.07,22.9,0.17 +2020-02-02 21:00:00,154.82,270.88,66.32,37.73,11.66,1.87,16.67,78.39,46.93,5.47,26.88,0.39 +2020-02-02 22:00:00,178.79,312.38,63.37,38.02,11.62,2.04,17.83,82.13,53.56,5.82,27.43,0.35 +2020-02-02 23:00:00,182.92,311.62,61.29,39.05,12.45,2.06,17.72,86.28,59.85,5.84,27.2,0.7 +2020-02-03 00:00:00,185.89,305.54,60.59,39.52,12.55,1.91,18.06,98.96,73.26,5.58,27.39,0.75 +2020-02-03 01:00:00,177.49,287.62,57.83,39.42,11.73,1.6,16.86,89.15,65.79,5.54,23.89,0.61 +2020-02-03 02:00:00,165.43,263.11,54.61,40.96,10.88,1.47,17.49,85.15,62.42,5.5,21.8,0.35 +2020-02-03 03:00:00,165.9,252.84,49.71,39.13,10.03,1.34,16.48,77.55,56.41,4.91,20.74,0.27 +2020-02-03 04:00:00,169.66,253.47,48.16,38.4,10.03,1.21,16.25,74.11,53.88,4.81,21.08,0.24 +2020-02-03 05:00:00,171.87,252.72,47.44,38.65,9.38,1.16,15.63,74.18,54.17,4.17,17.92,0.17 +2020-02-03 06:00:00,173.33,257.34,46.93,39.34,8.81,1.11,15.99,66.91,46.71,4.27,15.92,0.19 +2020-02-03 07:00:00,167.47,249.92,47.87,39.25,9.39,1.17,16.71,70.23,48.63,4.09,14.84,0.17 +2020-02-03 08:00:00,169.48,261.81,48.96,40.25,9.87,1.32,15.76,75.3,54.96,4.28,14.57,0.15 +2020-02-03 09:00:00,169.75,285.1,57.3,41.91,12.09,1.45,18.47,80.92,55.17,4.36,14.91,0.19 +2020-02-03 10:00:00,168.54,290.61,61.1,40.49,12.96,1.3,26.25,66.16,36.76,4.22,14.79,0.34 +2020-02-03 11:00:00,140.73,240.3,49.62,36.53,12.83,1.01,44.05,47.41,22.18,3.67,15.44,1.07 +2020-02-03 12:00:00,102.89,183.93,41.52,34.95,12.17,0.87,59.69,36.97,16.24,3.11,16.4,0.07 +2020-02-03 13:00:00,80.58,144.73,39.97,33.13,11.36,0.8,69.46,33.39,16.74,2.63,15.16,1.29 +2020-02-03 14:00:00,68.65,126.67,35.59,31.67,10.43,0.81,72.7,29.66,12.84,2.21,13.12,0.08 +2020-02-03 15:00:00,58.55,120.0,36.7,31.23,9.27,0.74,75.59,30.18,13.06,2.08,13.09,0.06 +2020-02-03 16:00:00,56.73,115.81,33.84,31.19,9.41,0.75,76.15,28.26,13.38,2.05,14.34,0.02 +2020-02-03 17:00:00,54.06,112.55,37.61,32.43,9.3,0.8,70.55,33.27,13.78,1.98,13.87,0.0 +2020-02-03 18:00:00,61.08,138.27,52.88,33.38,9.87,0.94,48.67,47.86,18.99,2.62,19.23,0.09 +2020-02-03 19:00:00,79.34,193.11,70.93,35.82,10.94,1.45,23.35,71.26,35.26,3.98,35.48,0.17 +2020-02-03 20:00:00,117.83,274.18,77.92,34.84,12.3,2.27,16.09,102.19,66.46,5.6,52.41,0.29 +2020-02-03 21:00:00,167.16,354.41,79.54,39.32,14.56,3.06,17.92,134.69,101.12,6.66,66.35,0.78 +2020-02-03 22:00:00,215.47,430.71,77.61,43.55,16.62,3.69,20.62,162.52,124.24,8.51,83.61,2.13 +2020-02-03 23:00:00,236.24,447.49,74.79,44.65,16.77,4.1,25.77,158.8,148.76,9.51,83.81,2.72 +2020-02-04 00:00:00,244.18,472.56,72.53,45.23,16.42,3.85,25.92,166.29,157.7,9.33,78.96,3.16 +2020-02-04 01:00:00,241.22,455.26,69.55,46.76,16.66,3.32,21.49,174.37,163.69,9.2,70.45,2.67 +2020-02-04 02:00:00,218.16,390.36,65.91,47.89,17.43,3.11,23.05,183.69,162.31,8.63,62.82,3.31 +2020-02-04 03:00:00,209.2,373.76,64.58,44.6,14.87,2.72,20.79,172.84,150.36,8.42,60.48,3.86 +2020-02-04 04:00:00,196.66,339.74,57.34,44.12,12.91,2.48,22.45,153.35,144.86,7.59,52.78,1.8 +2020-02-04 05:00:00,193.03,317.94,53.38,44.68,13.38,2.42,22.46,161.02,150.27,7.3,54.19,1.67 +2020-02-04 06:00:00,195.39,316.76,49.16,45.16,13.63,2.37,20.91,168.83,160.42,7.27,54.86,1.37 +2020-02-04 07:00:00,199.05,317.65,48.62,44.96,13.96,2.61,23.13,170.56,166.89,7.08,54.15,1.08 +2020-02-04 08:00:00,217.08,367.65,53.07,46.92,14.87,3.05,27.32,201.97,190.4,7.66,52.29,1.13 +2020-02-04 09:00:00,255.29,446.97,71.89,49.08,20.87,3.11,26.78,190.71,180.31,8.53,53.11,1.32 +2020-02-04 10:00:00,274.22,481.68,89.13,52.59,19.82,2.28,30.59,139.75,103.17,8.19,46.56,1.03 +2020-02-04 11:00:00,241.6,409.41,76.34,44.5,18.76,1.54,34.08,84.46,51.06,6.06,30.98,3.01 +2020-02-04 12:00:00,172.73,300.05,56.68,40.65,16.17,1.15,54.4,55.01,31.16,4.54,22.41,2.55 +2020-02-04 13:00:00,126.8,224.83,45.19,38.66,14.23,1.01,73.65,39.99,22.69,3.46,18.43,1.78 +2020-02-04 14:00:00,103.27,188.61,39.27,38.05,13.22,0.91,86.11,32.51,12.46,2.86,15.37,0.05 +2020-02-04 15:00:00,92.84,171.46,38.03,34.77,12.58,0.84,87.73,30.09,9.94,2.99,13.04,0.14 +2020-02-04 16:00:00,89.38,177.91,38.78,35.07,11.74,0.81,93.38,28.35,7.28,2.88,19.01,0.07 +2020-02-04 17:00:00,92.48,180.52,46.11,36.36,11.55,0.9,90.44,32.47,7.45,3.05,20.65,0.0 +2020-02-04 18:00:00,105.55,214.28,61.86,37.17,12.79,1.13,66.18,44.18,9.91,3.55,36.33,0.05 +2020-02-04 19:00:00,132.85,287.97,85.32,39.33,14.15,1.72,36.49,67.42,21.81,5.25,54.3,0.16 +2020-02-04 20:00:00,188.0,383.05,96.93,41.76,15.69,2.54,25.27,101.72,52.6,6.84,68.52,0.53 +2020-02-04 21:00:00,231.91,448.53,97.05,45.42,15.94,3.37,24.88,143.49,98.96,8.08,74.04,1.15 +2020-02-04 22:00:00,256.47,463.17,94.91,46.27,17.22,3.32,24.32,128.62,91.88,8.54,66.78,1.63 +2020-02-04 23:00:00,244.76,443.39,83.6,44.06,17.28,2.53,22.26,106.44,80.82,7.12,52.33,1.38 +2020-02-05 00:00:00,215.78,367.96,72.79,43.93,14.79,1.89,19.27,93.01,57.03,6.32,41.61,0.47 +2020-02-05 01:00:00,196.33,312.37,65.09,43.56,13.48,1.48,19.28,79.68,46.54,5.66,36.7,0.31 +2020-02-05 02:00:00,182.59,290.74,60.94,43.78,12.14,1.44,17.42,82.74,52.35,5.17,34.11,0.29 +2020-02-05 03:00:00,172.61,277.4,57.08,41.74,10.98,1.45,15.85,85.55,58.5,4.63,29.23,0.32 +2020-02-05 04:00:00,170.29,272.55,53.34,41.67,9.82,1.45,14.96,91.31,68.09,4.53,26.25,0.48 +2020-02-05 05:00:00,174.3,281.24,50.42,41.31,10.07,1.49,14.81,91.88,71.43,4.93,27.94,0.37 +2020-02-05 06:00:00,180.79,290.02,48.83,42.2,11.05,1.47,16.62,97.49,78.91,5.11,30.42,0.22 +2020-02-05 07:00:00,203.44,316.75,50.53,44.36,11.98,1.57,17.73,103.71,84.98,5.86,31.24,0.27 +2020-02-05 08:00:00,228.55,368.15,53.74,47.9,13.23,1.89,21.48,118.06,99.69,6.14,29.5,0.12 +2020-02-05 09:00:00,258.11,429.57,65.36,49.56,15.65,1.88,23.67,108.3,81.39,6.33,27.62,0.24 +2020-02-05 10:00:00,262.46,431.54,70.42,47.91,21.47,1.67,26.14,85.74,52.4,5.97,22.37,0.14 +2020-02-05 11:00:00,228.55,357.91,58.03,44.35,22.91,1.31,38.03,59.05,28.78,5.54,21.31,2.44 +2020-02-05 12:00:00,154.95,257.06,42.48,38.29,16.86,0.96,60.43,40.35,17.6,4.52,24.47,0.01 +2020-02-05 13:00:00,93.01,176.7,33.97,35.39,13.39,0.76,63.32,29.98,11.9,3.09,24.7,1.69 +2020-02-05 14:00:00,66.43,141.67,32.38,35.11,12.17,0.69,64.24,28.03,11.54,2.17,16.67,0.0 +2020-02-05 15:00:00,59.71,125.71,32.34,34.64,11.49,0.75,64.82,27.65,13.82,2.4,14.53,0.01 +2020-02-05 16:00:00,65.63,129.27,32.27,35.4,11.61,0.76,60.93,28.46,11.59,2.25,14.44,0.0 +2020-02-05 17:00:00,61.81,127.26,34.75,34.19,10.37,0.77,59.93,30.47,11.94,2.35,22.47,0.0 +2020-02-05 18:00:00,66.38,137.5,44.23,33.99,11.02,0.87,45.15,38.27,13.67,2.84,32.65,0.07 +2020-02-05 19:00:00,72.59,154.55,60.25,33.93,10.92,1.1,24.35,53.97,21.02,3.84,29.01,0.3 +2020-02-05 20:00:00,93.96,194.2,70.07,35.89,13.45,1.41,19.08,62.56,24.76,5.23,32.62,0.26 +2020-02-05 21:00:00,122.01,227.59,68.93,37.67,14.75,1.46,18.57,61.38,23.38,5.83,31.99,0.76 +2020-02-05 22:00:00,137.38,235.12,64.22,37.97,13.44,1.38,21.03,60.01,24.94,4.97,32.46,0.52 +2020-02-05 23:00:00,134.23,226.92,58.05,37.04,12.43,1.34,21.71,62.32,31.65,4.71,27.65,0.21 +2020-02-06 00:00:00,124.01,212.23,56.76,36.74,11.79,1.33,18.26,67.28,37.62,4.49,28.0,0.36 +2020-02-06 01:00:00,119.3,204.11,56.54,37.12,11.24,1.16,16.19,69.64,40.28,4.53,23.62,0.22 +2020-02-06 02:00:00,121.04,197.56,53.8,37.92,9.75,1.07,16.11,62.93,35.17,4.48,20.55,0.24 +2020-02-06 03:00:00,126.35,197.79,52.45,37.83,9.79,1.01,15.79,59.87,31.97,4.05,18.12,0.06 +2020-02-06 04:00:00,133.81,208.25,50.48,38.01,9.85,0.96,16.37,57.66,30.85,3.4,15.69,0.05 +2020-02-06 05:00:00,128.0,199.76,48.85,37.47,9.81,0.92,16.51,56.86,31.07,3.22,13.6,0.1 +2020-02-06 06:00:00,128.77,198.02,48.44,38.23,9.85,0.96,15.18,65.27,38.96,3.41,13.0,0.07 +2020-02-06 07:00:00,139.03,217.83,49.34,39.01,11.01,1.06,14.8,70.99,40.05,3.52,12.79,0.12 +2020-02-06 08:00:00,157.31,252.14,51.36,41.19,12.91,1.25,16.8,82.84,52.23,3.98,13.03,0.55 +2020-02-06 09:00:00,166.87,274.04,55.97,42.28,14.3,1.23,19.5,72.69,44.47,4.06,12.74,0.28 +2020-02-06 10:00:00,162.63,267.11,54.7,39.52,13.63,1.12,28.83,59.36,30.37,3.75,12.22,0.11 +2020-02-06 11:00:00,134.87,216.61,46.18,36.68,13.25,1.02,44.59,45.71,19.8,3.21,12.04,0.88 +2020-02-06 12:00:00,104.45,176.96,39.25,35.16,12.24,0.89,58.88,36.92,14.7,2.79,12.23,0.03 +2020-02-06 13:00:00,80.57,141.68,36.76,32.89,11.01,0.75,65.98,32.97,11.73,2.53,13.95,0.0 +2020-02-06 14:00:00,65.15,120.69,35.25,32.19,11.08,0.73,68.99,30.61,10.91,2.52,16.05,2.53 +2020-02-06 15:00:00,61.58,115.97,38.82,31.84,10.76,0.7,76.73,35.02,11.57,2.46,18.17,3.41 +2020-02-06 16:00:00,58.43,116.26,32.76,31.18,11.15,0.72,75.96,27.69,12.49,2.34,16.49,2.17 +2020-02-06 17:00:00,57.63,114.82,37.12,31.23,10.8,0.74,70.06,31.88,13.75,2.35,15.88,1.33 +2020-02-06 18:00:00,60.44,126.19,45.53,31.91,11.91,0.84,54.99,39.03,15.91,2.71,16.83,1.94 +2020-02-06 19:00:00,75.57,170.1,64.23,32.78,13.53,1.19,26.07,55.02,21.57,3.96,37.24,3.11 +2020-02-06 20:00:00,112.38,246.0,72.41,34.62,14.58,1.67,17.79,73.36,37.36,5.19,47.1,0.23 +2020-02-06 21:00:00,157.06,284.4,74.71,36.31,14.78,2.13,17.48,98.7,62.71,6.56,51.04,0.43 +2020-02-06 22:00:00,177.8,330.96,73.74,37.23,15.33,2.42,18.48,105.62,71.12,7.77,52.28,1.2 +2020-02-06 23:00:00,192.57,340.95,68.27,38.42,15.46,2.45,19.69,115.12,84.1,8.28,50.47,0.33 +2020-02-07 00:00:00,188.3,330.29,63.96,38.63,14.6,2.12,19.73,112.01,83.84,7.82,47.71,0.3 +2020-02-07 01:00:00,188.99,315.7,62.44,38.76,13.28,1.87,16.42,115.0,88.81,6.99,42.71,0.72 +2020-02-07 02:00:00,186.97,296.95,59.17,39.1,11.57,1.82,16.15,124.79,100.31,7.03,36.22,0.64 +2020-02-07 03:00:00,175.77,279.19,68.42,36.98,15.0,1.83,17.94,132.67,112.86,6.76,33.7,0.0 +2020-02-07 04:00:00,171.11,268.94,62.82,37.98,12.75,1.82,16.6,121.6,115.81,7.04,37.83,0.09 +2020-02-07 05:00:00,169.24,268.58,62.37,36.86,12.49,1.69,18.77,110.73,107.74,7.01,36.84,0.0 +2020-02-07 06:00:00,175.66,268.6,59.63,34.77,12.2,1.72,20.59,142.91,119.98,7.1,31.54,0.0 +2020-02-07 07:00:00,181.15,280.22,57.08,38.13,12.62,1.91,21.97,144.8,134.07,7.14,30.5,0.02 +2020-02-07 08:00:00,197.23,314.7,58.4,38.97,15.44,2.25,26.02,165.0,156.7,7.64,32.33,0.0 +2020-02-07 09:00:00,221.03,365.65,74.17,40.28,18.74,2.29,30.04,166.44,138.31,8.45,35.2,0.08 +2020-02-07 10:00:00,215.06,370.91,88.91,41.71,24.64,1.67,39.16,113.66,64.55,7.8,31.57,0.0 +2020-02-07 11:00:00,195.08,319.96,77.76,39.72,22.58,1.38,45.74,82.05,38.01,6.46,34.89,0.0 +2020-02-07 12:00:00,163.4,263.81,65.4,42.12,16.92,1.18,49.03,58.93,22.1,5.18,34.25,0.0 +2020-02-07 13:00:00,143.66,234.76,49.46,39.76,14.48,0.96,62.52,38.8,12.77,4.24,25.29,0.0 +2020-02-07 14:00:00,117.44,200.57,38.93,38.12,13.77,0.83,69.6,29.74,9.43,3.38,24.87,1.75 +2020-02-07 15:00:00,99.81,177.63,32.41,37.38,12.2,0.77,73.63,26.17,9.04,2.91,19.73,0.01 +2020-02-07 16:00:00,85.19,150.71,31.58,37.67,11.76,0.76,71.63,26.86,11.51,2.89,17.51,0.88 +2020-02-07 17:00:00,76.53,137.19,33.34,36.86,11.16,0.73,67.08,28.66,13.07,2.68,15.82,1.35 +2020-02-07 18:00:00,70.97,135.71,38.59,35.5,10.89,0.82,52.33,32.45,11.87,2.72,20.02,2.8 +2020-02-07 19:00:00,72.11,151.7,53.23,35.21,11.22,1.07,30.02,43.7,14.65,4.06,26.02,0.0 +2020-02-07 20:00:00,94.78,190.8,63.17,36.86,11.93,1.38,19.53,54.88,21.42,5.29,28.63,0.0 +2020-02-07 21:00:00,125.61,231.6,67.97,38.27,12.38,1.67,16.72,74.01,39.57,5.49,41.78,0.93 +2020-02-07 22:00:00,139.65,264.35,67.89,40.46,13.62,1.8,16.6,83.24,49.88,6.5,43.1,0.34 +2020-02-07 23:00:00,148.87,273.28,65.91,41.14,14.86,1.9,16.07,95.68,65.55,6.21,38.2,0.53 +2020-02-08 00:00:00,160.48,290.97,62.94,42.06,14.32,1.83,15.34,100.27,70.88,6.13,38.65,0.37 +2020-02-08 01:00:00,163.86,295.83,58.94,43.45,13.93,1.65,15.72,102.3,72.99,6.98,40.42,0.34 +2020-02-08 02:00:00,178.92,297.87,57.67,45.85,14.32,1.47,19.48,94.2,69.75,6.64,34.76,0.22 +2020-02-08 03:00:00,190.73,299.15,53.91,45.15,13.49,1.3,19.87,78.71,54.63,6.8,32.88,0.17 +2020-02-08 04:00:00,186.46,283.01,52.61,44.37,14.02,1.13,18.08,65.31,40.55,5.15,26.47,2.54 +2020-02-08 05:00:00,176.34,268.36,50.82,43.8,14.52,1.01,17.71,56.77,31.93,4.16,20.29,7.89 +2020-02-08 06:00:00,175.53,258.09,49.06,43.81,13.96,1.01,17.86,53.36,29.13,4.32,16.62,3.34 +2020-02-08 07:00:00,177.54,260.29,48.26,43.68,13.42,1.07,17.47,60.01,37.24,4.01,14.69,1.56 +2020-02-08 08:00:00,176.92,263.93,46.79,42.95,13.24,1.12,16.91,59.04,36.99,4.01,13.18,0.86 +2020-02-08 09:00:00,183.45,272.43,48.1,43.85,16.24,1.21,20.4,56.15,31.87,4.24,11.45,1.14 +2020-02-08 10:00:00,187.27,268.32,46.07,43.44,18.0,1.05,29.61,46.34,22.5,4.05,10.41,0.0 +2020-02-08 11:00:00,183.45,260.93,41.09,42.59,19.0,0.99,42.77,38.48,16.33,3.83,11.54,0.06 +2020-02-08 12:00:00,173.58,255.92,36.18,41.49,19.01,0.92,58.46,31.75,12.56,3.8,11.06,0.67 +2020-02-08 13:00:00,150.29,229.05,32.32,39.21,17.65,0.87,72.15,26.58,9.16,3.49,13.11,0.84 +2020-02-08 14:00:00,122.87,191.22,29.39,36.53,15.04,0.77,76.29,24.58,8.66,3.01,11.71,1.66 +2020-02-08 15:00:00,95.18,158.46,27.76,35.49,12.58,0.7,76.99,23.17,8.44,2.3,12.29,1.82 +2020-02-08 16:00:00,79.0,136.19,27.31,35.15,11.66,0.67,76.16,23.07,8.71,2.06,12.94,1.49 +2020-02-08 17:00:00,68.68,122.6,28.93,34.65,11.01,0.69,72.65,24.25,9.01,2.07,9.95,0.1 +2020-02-08 18:00:00,70.65,127.0,37.64,34.77,11.31,0.79,56.47,31.62,11.66,2.07,9.1,0.09 +2020-02-08 19:00:00,87.11,156.66,55.83,36.38,12.35,1.1,31.53,47.66,18.1,2.69,12.95,1.33 +2020-02-08 20:00:00,117.75,214.08,62.21,38.3,13.75,1.42,22.19,58.04,25.56,4.31,18.9,0.09 +2020-02-08 21:00:00,149.94,258.64,61.97,39.23,14.22,1.6,21.27,62.6,30.17,5.88,22.1,0.04 +2020-02-08 22:00:00,166.73,275.49,62.47,41.01,14.08,1.73,22.53,71.37,38.61,6.28,21.16,0.14 +2020-02-08 23:00:00,169.28,271.66,62.96,40.08,14.34,1.66,19.47,70.3,39.44,6.45,21.96,0.22 +2020-02-09 00:00:00,166.44,262.49,60.65,40.21,14.85,1.67,18.21,77.27,47.91,5.89,20.55,0.02 +2020-02-09 01:00:00,166.31,260.46,57.37,41.23,13.5,1.45,17.53,79.12,50.64,6.16,20.76,0.01 +2020-02-09 02:00:00,157.46,246.16,52.28,41.24,11.44,1.33,19.0,71.64,44.83,5.55,21.04,0.04 +2020-02-09 03:00:00,163.2,250.75,49.0,39.13,10.43,1.22,18.81,64.34,39.38,4.98,18.19,2.49 +2020-02-09 04:00:00,158.62,240.26,46.08,40.46,10.33,1.2,17.61,60.95,40.26,5.09,16.9,0.0 +2020-02-09 05:00:00,166.73,259.81,43.33,41.71,10.95,1.2,16.91,62.83,43.84,4.9,15.61,0.0 +2020-02-09 06:00:00,181.19,272.48,41.07,40.36,10.97,1.26,17.35,67.72,50.68,4.63,15.39,0.24 +2020-02-09 07:00:00,181.62,287.3,43.09,41.16,11.75,1.31,17.49,69.2,50.69,4.6,14.82,0.16 +2020-02-09 08:00:00,197.81,302.9,47.12,45.58,13.12,1.28,19.08,65.84,45.8,4.83,12.62,0.18 +2020-02-09 09:00:00,200.41,302.51,50.33,45.39,16.09,1.25,23.57,58.97,34.05,4.77,10.27,0.21 +2020-02-09 10:00:00,199.92,293.75,51.1,44.3,19.14,1.18,31.13,51.13,24.18,4.4,10.11,0.03 +2020-02-09 11:00:00,191.03,274.33,45.44,42.08,21.02,1.06,45.08,44.16,19.24,4.29,12.25,0.01 +2020-02-09 12:00:00,165.7,249.16,38.88,38.84,20.14,0.94,62.26,34.46,13.76,3.45,11.19,0.0 +2020-02-09 13:00:00,131.86,211.35,35.39,37.78,17.26,0.87,79.55,29.74,10.69,3.05,12.8,0.01 +2020-02-09 14:00:00,108.15,175.08,33.51,36.88,14.96,0.86,85.36,28.2,10.19,2.62,12.72,0.0 +2020-02-09 15:00:00,90.77,154.35,31.3,35.73,13.85,0.8,85.76,26.15,9.48,2.3,10.61,0.0 +2020-02-09 16:00:00,77.21,138.28,31.37,34.81,12.89,0.79,83.8,26.83,10.56,2.29,12.03,0.0 +2020-02-09 17:00:00,71.45,132.7,34.22,34.27,12.27,0.83,76.1,29.91,12.12,2.05,15.08,0.0 +2020-02-09 18:00:00,73.21,141.0,46.53,34.84,12.92,0.91,55.8,40.22,16.43,2.31,12.96,0.0 +2020-02-09 19:00:00,92.83,187.96,69.69,36.99,15.19,1.41,26.8,74.83,38.65,3.46,19.03,0.0 +2020-02-09 20:00:00,133.07,278.42,80.36,39.28,16.87,1.97,20.4,97.59,58.33,4.59,26.3,0.17 +2020-02-09 21:00:00,166.24,329.86,80.26,42.07,16.91,1.99,11.76,95.45,56.07,5.97,32.9,0.58 +2020-02-09 22:00:00,188.66,341.68,76.97,43.16,17.63,2.03,10.97,94.08,55.72,6.35,33.97,0.79 +2020-02-09 23:00:00,204.4,349.92,72.73,43.54,16.94,2.1,10.59,98.04,63.16,5.82,31.17,5.98 +2020-02-10 00:00:00,208.71,355.07,69.83,44.95,16.26,2.14,10.01,112.91,80.51,5.37,33.28,0.63 +2020-02-10 01:00:00,210.61,352.63,67.17,46.33,16.58,1.93,10.74,110.56,79.27,6.02,35.14,0.49 +2020-02-10 02:00:00,203.25,334.49,63.9,46.62,14.11,1.71,10.64,106.05,77.73,6.22,32.15,0.27 +2020-02-10 03:00:00,198.25,302.3,57.87,45.23,13.73,1.56,10.31,91.26,64.17,5.47,26.45,0.14 +2020-02-10 04:00:00,195.44,300.85,53.83,45.54,12.9,1.53,9.79,97.45,72.99,5.08,25.48,0.41 +2020-02-10 05:00:00,189.98,297.0,49.48,44.1,11.91,1.4,9.67,88.78,70.27,5.17,24.93,4.47 +2020-02-10 06:00:00,192.51,291.29,47.91,43.56,11.13,1.42,9.76,87.14,69.19,4.97,23.75,0.08 +2020-02-10 07:00:00,200.05,311.61,49.03,45.85,12.16,1.48,10.67,89.4,71.2,5.12,21.03,4.3 +2020-02-10 08:00:00,231.13,362.87,53.05,47.93,14.34,1.64,11.6,97.97,77.64,5.38,19.86,0.19 +2020-02-10 09:00:00,258.87,409.23,61.4,47.49,17.43,1.66,11.09,93.8,66.55,5.51,18.92,0.08 +2020-02-10 10:00:00,266.35,421.41,63.5,44.74,23.87,1.48,17.53,70.93,38.34,5.53,16.27,0.1 +2020-02-10 11:00:00,247.78,377.21,55.96,41.74,26.48,1.25,33.01,52.97,22.34,4.69,14.99,2.33 +2020-02-10 12:00:00,189.14,289.3,41.06,37.41,19.27,0.97,54.87,35.59,14.0,3.87,17.4,0.01 +2020-02-10 13:00:00,133.6,210.23,33.61,34.67,13.5,0.79,74.47,28.44,10.9,3.04,16.05,0.01 +2020-02-10 14:00:00,98.67,165.96,30.76,31.58,12.32,0.77,80.79,26.58,9.81,2.79,13.06,0.0 +2020-02-10 15:00:00,93.07,159.39,32.09,31.74,11.64,0.85,80.9,27.03,9.93,2.72,11.27,1.77 +2020-02-10 16:00:00,84.26,150.0,32.75,31.12,11.51,0.82,81.11,26.42,8.89,2.54,12.09,0.48 +2020-02-10 17:00:00,81.08,147.3,37.66,30.95,11.31,0.85,79.08,30.52,10.72,2.38,12.83,0.98 +2020-02-10 18:00:00,83.5,160.45,49.72,31.31,11.74,0.93,60.09,39.95,13.76,2.57,15.92,0.53 +2020-02-10 19:00:00,97.51,201.4,74.18,32.43,12.51,1.35,26.4,66.02,26.78,4.11,26.17,1.51 +2020-02-10 20:00:00,129.16,271.51,85.04,34.99,13.22,2.2,18.13,103.49,62.95,5.83,41.95,3.02 +2020-02-10 21:00:00,168.43,338.95,84.82,37.56,14.52,2.87,17.87,142.93,104.77,7.5,52.28,3.52 +2020-02-10 22:00:00,197.11,387.88,83.56,40.1,16.22,3.49,17.75,180.58,151.24,9.85,62.67,4.46 +2020-02-10 23:00:00,227.18,420.35,77.36,41.88,17.19,3.43,19.91,177.7,152.48,12.15,66.72,11.43 +2020-02-11 00:00:00,235.9,435.46,74.62,41.32,16.4,3.52,21.85,177.82,154.64,9.43,65.03,11.09 +2020-02-11 01:00:00,230.64,418.68,68.19,43.62,15.85,3.22,21.74,188.63,158.85,9.27,65.42,13.75 +2020-02-11 02:00:00,227.14,407.8,65.53,42.47,13.94,3.01,20.48,178.71,172.65,10.02,68.07,22.55 +2020-02-11 03:00:00,224.72,382.49,63.61,42.76,13.81,2.69,18.17,182.43,161.24,10.3,63.5,5.51 +2020-02-11 04:00:00,217.56,357.27,58.16,44.71,12.86,2.34,17.73,157.96,145.75,8.64,55.86,5.45 +2020-02-11 05:00:00,205.78,328.68,55.71,42.54,12.07,2.05,17.18,144.7,127.11,7.88,53.54,4.81 +2020-02-11 06:00:00,202.17,316.19,53.34,42.57,12.06,2.08,17.01,142.93,127.16,8.06,47.99,2.53 +2020-02-11 07:00:00,202.29,319.18,51.84,42.22,12.23,2.23,17.35,149.41,139.75,8.93,46.69,3.76 +2020-02-11 08:00:00,218.59,348.83,55.53,41.52,13.06,2.37,19.73,165.31,157.07,8.99,45.57,4.0 +2020-02-11 09:00:00,234.31,385.16,71.47,43.01,14.17,2.28,20.73,160.92,133.06,8.75,42.3,4.28 +2020-02-11 10:00:00,249.86,419.78,81.08,44.76,19.39,1.75,27.07,106.99,67.19,8.31,35.01,2.66 +2020-02-11 11:00:00,235.57,369.47,61.12,40.36,20.79,1.28,46.15,64.21,31.12,6.89,28.33,1.64 +2020-02-11 12:00:00,174.87,273.19,43.39,35.12,16.26,0.99,66.21,43.46,20.32,4.96,21.66,0.73 +2020-02-11 13:00:00,126.48,203.08,37.98,36.11,17.81,0.85,74.29,33.77,13.73,3.93,19.08,0.78 +2020-02-11 14:00:00,106.19,179.25,33.69,35.11,15.13,0.85,82.1,29.06,9.97,3.47,16.85,0.52 +2020-02-11 15:00:00,97.86,167.32,32.36,34.58,13.38,0.8,86.53,25.19,7.98,3.07,22.8,0.82 +2020-02-11 16:00:00,91.94,161.32,32.26,34.71,13.26,0.69,84.88,24.55,9.14,2.73,15.88,0.57 +2020-02-11 17:00:00,81.62,149.01,36.45,34.16,12.19,0.73,78.31,29.05,9.29,3.03,16.96,0.74 +2020-02-11 18:00:00,79.38,156.84,50.76,33.77,11.96,0.85,54.84,38.69,11.59,3.15,19.33,1.34 +2020-02-11 19:00:00,95.97,203.37,74.31,35.9,12.5,1.35,24.8,65.78,26.72,3.9,25.63,0.49 +2020-02-11 20:00:00,126.01,282.6,85.81,38.09,13.68,1.98,18.12,100.24,60.23,5.77,39.43,1.93 +2020-02-11 21:00:00,164.71,326.86,87.08,40.16,13.91,2.4,18.66,115.8,77.55,6.92,59.67,2.96 +2020-02-11 22:00:00,197.93,371.02,86.24,41.74,14.09,2.58,20.13,124.44,95.25,6.63,52.67,1.45 +2020-02-11 23:00:00,210.26,384.15,82.32,42.17,14.06,2.4,19.32,131.7,97.31,6.53,52.33,1.88 +2020-02-12 00:00:00,207.24,368.08,80.57,43.72,13.66,2.22,17.88,131.67,99.93,6.85,46.81,3.74 +2020-02-12 01:00:00,201.08,349.65,75.91,43.77,13.56,1.96,17.69,128.17,96.86,6.27,46.21,1.8 +2020-02-12 02:00:00,195.79,329.48,69.1,45.05,11.97,1.79,18.98,124.21,99.02,6.28,44.41,1.64 +2020-02-12 03:00:00,200.21,320.43,62.79,44.11,10.59,1.59,18.18,105.69,81.19,7.42,43.77,8.51 +2020-02-12 04:00:00,201.2,316.97,61.87,43.6,10.45,1.48,19.31,95.52,70.18,6.44,37.86,6.29 +2020-02-12 05:00:00,217.7,339.66,63.68,44.43,12.06,1.37,20.07,83.73,56.27,6.06,30.43,0.92 +2020-02-12 06:00:00,242.88,374.73,58.29,44.8,15.03,1.2,20.25,66.78,41.45,5.11,23.49,0.64 +2020-02-12 07:00:00,250.39,375.5,58.99,43.6,15.73,1.31,18.83,68.59,47.36,5.05,19.34,0.45 +2020-02-12 08:00:00,242.87,369.09,59.53,43.09,15.46,1.44,19.21,81.78,56.1,5.22,18.13,0.36 +2020-02-12 09:00:00,243.26,383.13,64.17,43.83,19.34,1.44,20.75,76.51,51.29,5.31,16.59,0.52 +2020-02-12 10:00:00,251.24,392.16,63.39,43.85,22.05,1.34,29.47,61.89,33.92,5.05,14.33,0.61 +2020-02-12 11:00:00,221.89,346.81,55.38,42.71,20.7,1.15,46.06,51.61,25.62,4.95,16.03,1.0 +2020-02-12 12:00:00,174.55,298.2,39.82,37.98,16.84,1.01,64.67,33.68,13.02,4.0,17.71,0.11 +2020-02-12 13:00:00,138.69,275.6,36.64,36.04,14.65,0.91,71.31,28.57,10.1,3.36,14.86,0.0 +2020-02-12 14:00:00,110.93,245.81,34.84,36.6,12.82,0.86,76.35,27.89,10.07,3.42,12.04,0.45 +2020-02-12 15:00:00,93.19,228.33,35.25,36.42,11.77,0.83,76.28,27.85,9.57,2.68,10.77,0.48 +2020-02-12 16:00:00,92.28,205.52,35.3,36.0,13.25,0.84,72.13,29.48,10.72,3.29,11.12,0.47 +2020-02-12 17:00:00,92.43,196.98,38.61,36.4,16.8,0.9,67.67,31.85,10.81,2.62,13.29,0.56 +2020-02-12 18:00:00,99.15,193.23,44.79,37.0,17.88,0.97,59.52,36.39,11.92,3.15,18.34,0.45 +2020-02-12 19:00:00,110.43,209.27,57.16,37.79,18.6,1.21,40.67,49.16,18.45,4.44,26.03,1.21 +2020-02-12 20:00:00,122.79,233.35,67.0,39.41,19.75,1.4,27.74,56.97,21.04,4.33,33.52,0.59 +2020-02-12 21:00:00,141.3,256.51,65.13,41.21,22.41,1.32,28.85,55.37,19.89,4.13,28.27,0.28 +2020-02-12 22:00:00,143.08,246.01,59.2,40.73,23.52,1.26,29.13,50.61,18.31,3.81,22.24,0.02 +2020-02-12 23:00:00,136.43,226.61,55.55,39.86,20.95,1.17,27.6,47.72,17.57,3.81,21.96,0.53 +2020-02-13 00:00:00,126.93,207.18,51.76,38.93,18.5,1.01,25.57,42.86,14.5,3.91,18.5,0.72 +2020-02-13 01:00:00,117.98,193.55,49.43,38.58,16.97,0.92,23.57,40.95,13.66,3.47,15.77,0.29 +2020-02-13 02:00:00,118.75,185.5,45.85,39.61,15.64,0.94,24.66,39.02,13.59,2.63,15.7,0.28 +2020-02-13 03:00:00,116.55,177.56,42.32,37.78,15.07,0.96,24.62,36.93,13.85,2.83,13.8,0.21 +2020-02-13 04:00:00,116.2,170.94,39.41,37.56,14.89,0.97,23.79,34.48,13.06,2.68,12.9,0.16 +2020-02-13 05:00:00,121.5,175.44,37.08,37.11,15.01,0.94,22.5,32.54,12.52,2.79,11.62,0.16 +2020-02-13 06:00:00,115.17,167.35,37.78,36.13,14.61,0.82,19.32,35.71,15.86,2.96,10.25,0.23 +2020-02-13 07:00:00,107.92,161.08,39.59,35.95,14.29,0.85,17.24,40.56,20.14,2.96,10.22,0.15 +2020-02-13 08:00:00,114.18,175.61,41.52,36.72,15.13,0.96,16.39,48.27,27.6,2.89,9.52,0.25 +2020-02-13 09:00:00,128.75,207.01,40.46,36.68,18.87,1.02,21.15,44.81,24.55,3.2,10.38,0.09 +2020-02-13 10:00:00,128.9,219.63,39.46,35.08,20.47,1.03,28.22,39.81,19.59,3.14,10.36,0.5 +2020-02-13 11:00:00,115.44,210.4,37.9,35.49,19.81,0.98,40.56,38.11,18.3,3.16,12.15,0.05 +2020-02-13 12:00:00,98.69,196.41,37.82,35.71,17.29,0.91,51.62,34.8,14.53,3.03,15.44,0.08 +2020-02-13 13:00:00,78.14,175.66,36.67,34.74,16.17,0.88,58.4,32.18,12.38,3.1,17.62,0.37 +2020-02-13 14:00:00,67.1,163.65,35.95,35.7,16.42,0.88,63.82,30.11,12.4,3.04,16.03,2.29 +2020-02-13 15:00:00,67.34,169.8,36.08,37.21,17.85,0.89,67.27,34.33,18.84,2.73,14.69,0.0 +2020-02-13 16:00:00,66.97,175.91,34.48,38.08,18.44,0.84,66.62,30.39,11.16,2.46,14.81,0.3 +2020-02-13 17:00:00,61.07,169.45,34.57,37.48,16.93,0.82,62.37,29.78,12.71,2.42,18.09,0.0 +2020-02-13 18:00:00,56.2,163.06,40.17,37.49,15.73,0.92,53.2,35.91,10.51,3.3,22.31,0.29 +2020-02-13 19:00:00,62.14,167.73,53.66,37.37,16.64,1.12,33.71,46.79,18.18,3.25,30.8,0.8 +2020-02-13 20:00:00,73.22,183.29,55.25,35.78,16.53,1.16,25.95,47.39,18.47,4.32,33.65,0.84 +2020-02-13 21:00:00,80.59,180.08,49.26,36.38,15.41,1.1,30.3,40.73,13.97,3.88,27.68,2.26 +2020-02-13 22:00:00,79.48,166.26,42.54,36.99,15.09,0.91,39.67,34.17,10.97,3.16,20.09,1.39 +2020-02-13 23:00:00,77.95,152.17,39.25,37.25,14.1,0.86,42.73,32.56,11.53,2.77,14.82,0.33 +2020-02-14 00:00:00,79.14,146.59,36.74,37.03,12.73,0.87,42.21,30.17,10.53,2.45,12.52,0.01 +2020-02-14 01:00:00,82.5,144.67,32.17,36.6,12.82,0.82,44.02,26.35,8.86,2.32,9.81,0.05 +2020-02-14 02:00:00,83.67,143.89,30.77,37.08,12.61,0.76,39.49,25.58,9.15,2.17,8.85,0.0 +2020-02-14 03:00:00,88.64,144.41,29.8,37.2,12.27,0.75,40.37,24.53,9.16,2.15,8.45,0.0 +2020-02-14 04:00:00,90.31,142.8,28.9,36.13,12.33,0.75,37.99,24.16,9.05,2.14,7.97,0.0 +2020-02-14 05:00:00,89.92,139.54,28.22,35.69,13.18,0.78,36.45,24.14,9.44,2.2,7.25,0.0 +2020-02-14 06:00:00,92.58,138.61,29.74,35.03,13.38,0.77,33.56,26.91,11.73,2.1,7.01,0.06 +2020-02-14 07:00:00,92.4,142.26,33.22,34.92,12.94,0.81,27.15,31.49,15.32,2.22,7.43,0.09 +2020-02-14 08:00:00,99.91,155.27,37.79,36.19,13.22,0.95,22.92,39.99,21.66,2.44,8.06,0.08 +2020-02-14 09:00:00,104.0,170.54,36.3,36.43,14.13,1.0,27.05,39.39,21.61,2.82,8.63,0.05 +2020-02-14 10:00:00,100.69,177.4,32.85,35.03,16.16,0.98,35.3,33.64,16.98,2.64,9.59,0.21 +2020-02-14 11:00:00,84.91,174.63,31.51,34.38,15.97,0.92,44.82,30.01,13.72,2.71,11.54,0.06 +2020-02-14 12:00:00,76.78,176.41,30.21,31.46,15.45,0.87,53.57,28.26,12.61,2.43,15.24,0.09 +2020-02-14 13:00:00,69.17,194.89,30.02,33.54,13.16,0.82,62.12,26.99,11.39,2.82,14.6,0.04 +2020-02-14 14:00:00,57.93,218.67,27.19,31.89,10.89,0.68,64.41,24.81,10.82,2.4,12.63,0.35 +2020-02-14 15:00:00,51.35,289.09,26.14,30.27,11.9,0.66,70.12,22.81,8.79,1.66,10.38,0.0 +2020-02-14 16:00:00,46.85,287.89,26.7,30.72,12.6,0.65,71.41,23.18,8.84,1.64,10.99,0.0 +2020-02-14 17:00:00,43.63,216.3,27.65,31.08,10.93,0.61,66.91,23.85,8.92,1.49,12.03,0.01 +2020-02-14 18:00:00,40.55,160.53,31.01,30.68,10.63,0.66,57.38,26.11,9.53,1.65,13.07,0.02 +2020-02-14 19:00:00,39.15,136.49,40.7,31.44,12.95,0.77,43.79,33.23,11.19,2.07,14.89,0.03 +2020-02-14 20:00:00,51.35,150.5,48.26,32.29,15.95,0.93,34.71,38.21,12.05,3.24,20.41,0.02 +2020-02-14 21:00:00,62.75,162.46,51.53,34.27,15.35,0.96,31.19,42.11,14.43,3.41,22.2,0.25 +2020-02-14 22:00:00,70.82,162.63,51.37,34.12,14.91,0.96,30.6,41.55,14.08,3.67,19.99,0.03 +2020-02-14 23:00:00,73.26,158.25,51.67,34.0,18.2,0.95,29.39,44.07,16.44,3.4,17.18,0.03 +2020-02-15 00:00:00,79.69,163.93,51.64,34.01,19.07,0.91,25.49,42.34,14.75,2.67,18.47,0.02 +2020-02-15 01:00:00,84.15,162.73,46.53,33.99,18.35,0.8,26.7,39.82,13.85,2.26,17.29,0.02 +2020-02-15 02:00:00,87.5,155.37,41.51,34.93,17.72,0.76,27.15,35.26,12.58,2.39,15.69,0.02 +2020-02-15 03:00:00,89.97,152.85,38.95,33.46,16.01,0.73,26.64,33.76,13.09,2.63,13.19,0.03 +2020-02-15 04:00:00,88.56,149.59,38.23,33.36,16.32,0.73,23.78,33.15,13.11,3.0,12.11,0.02 +2020-02-15 05:00:00,93.15,156.84,37.28,35.43,16.88,0.73,26.88,32.55,12.76,2.34,12.2,0.07 +2020-02-15 06:00:00,100.17,161.48,36.48,33.99,18.09,0.74,29.02,32.22,13.08,2.36,11.35,0.05 +2020-02-15 07:00:00,93.47,157.84,38.84,32.7,17.15,0.79,24.85,35.68,15.5,2.9,10.85,0.06 +2020-02-15 08:00:00,89.63,160.91,40.49,32.47,18.14,0.86,22.58,40.03,19.09,3.06,10.59,0.06 +2020-02-15 09:00:00,96.5,185.63,40.09,33.35,19.78,0.85,29.63,42.86,21.84,2.92,9.86,0.38 +2020-02-15 10:00:00,95.54,194.35,36.05,32.32,20.5,0.83,41.76,37.59,19.37,2.64,9.17,0.05 +2020-02-15 11:00:00,86.33,187.61,33.57,30.46,19.46,0.81,56.06,32.53,15.15,2.54,10.99,0.86 +2020-02-15 12:00:00,79.18,185.56,33.51,29.99,18.41,0.8,64.92,30.72,13.58,2.31,14.22,1.33 +2020-02-15 13:00:00,70.57,167.3,30.98,28.37,16.12,0.74,73.44,27.14,10.33,2.32,16.42,0.01 +2020-02-15 14:00:00,66.2,162.48,30.29,29.12,14.71,0.72,82.89,25.97,9.3,2.14,15.37,0.3 +2020-02-15 15:00:00,61.74,166.62,31.61,30.07,16.97,0.69,86.3,26.61,9.25,2.05,13.71,0.45 +2020-02-15 16:00:00,60.55,172.28,31.82,29.52,17.76,0.7,89.54,26.99,9.47,1.96,13.61,0.67 +2020-02-15 17:00:00,54.49,160.51,33.73,28.57,12.95,0.68,80.93,28.49,10.13,1.79,15.0,1.01 +2020-02-15 18:00:00,46.67,135.94,40.62,28.29,12.79,0.76,66.42,33.72,12.25,2.07,17.28,0.05 +2020-02-15 19:00:00,50.48,139.81,57.28,29.84,15.8,1.01,38.83,47.96,17.3,2.72,21.24,0.28 +2020-02-15 20:00:00,67.6,177.21,70.45,33.09,17.84,1.31,21.0,61.77,24.19,4.09,29.93,0.34 +2020-02-15 21:00:00,97.63,218.37,74.52,34.83,19.86,1.55,18.24,77.11,39.59,4.82,34.1,2.98 +2020-02-15 22:00:00,120.31,251.33,78.17,37.96,20.26,1.71,15.49,84.15,45.33,6.4,40.96,0.2 +2020-02-15 23:00:00,133.69,268.09,76.96,39.42,21.19,1.68,14.53,88.42,50.86,5.96,39.18,0.05 +2020-02-16 00:00:00,132.44,259.13,72.34,39.45,21.98,1.48,14.49,86.01,49.54,5.62,36.56,3.43 +2020-02-16 01:00:00,138.52,254.13,67.95,39.68,21.01,1.3,14.6,78.69,44.84,4.84,29.72,3.57 +2020-02-16 02:00:00,144.89,245.84,64.65,40.67,18.26,1.22,16.56,81.46,49.95,4.76,27.55,0.01 +2020-02-16 03:00:00,151.18,246.33,60.91,42.19,17.34,1.15,16.18,76.43,46.72,4.18,26.09,0.12 +2020-02-16 04:00:00,160.95,248.87,57.99,42.68,18.76,1.05,16.79,67.55,38.13,3.79,21.06,2.55 +2020-02-16 05:00:00,168.95,255.96,54.23,42.54,22.41,1.02,18.08,60.28,32.67,3.63,16.23,0.09 +2020-02-16 06:00:00,177.03,264.26,52.68,42.18,21.83,1.05,18.81,65.3,38.49,3.32,14.51,0.01 +2020-02-16 07:00:00,170.86,263.75,52.23,41.86,20.18,1.08,17.75,65.5,32.82,3.43,12.57,0.01 +2020-02-16 08:00:00,163.82,262.44,53.05,40.61,21.09,1.14,17.83,67.27,40.47,3.21,11.93,3.38 +2020-02-16 09:00:00,157.54,255.43,51.72,40.92,27.01,1.11,23.74,58.16,32.52,3.48,11.78,0.18 +2020-02-16 10:00:00,157.98,255.96,46.98,40.57,27.83,1.08,36.73,48.59,24.53,3.25,10.28,0.03 +2020-02-16 11:00:00,150.51,247.94,46.43,39.55,26.88,1.06,54.05,42.23,17.68,3.1,10.86,0.0 +2020-02-16 12:00:00,142.95,244.92,43.59,38.33,25.68,0.99,74.0,36.08,12.53,3.27,14.5,0.0 +2020-02-16 13:00:00,127.56,232.17,38.68,36.98,21.69,0.92,86.61,31.19,10.21,2.86,19.13,0.0 +2020-02-16 14:00:00,102.27,191.82,33.17,34.06,17.68,0.81,91.44,27.07,9.11,2.55,15.59,0.01 +2020-02-16 15:00:00,75.8,145.33,32.57,32.65,14.8,0.79,91.5,26.73,9.25,2.17,18.64,0.0 +2020-02-16 16:00:00,62.45,127.04,33.04,32.05,13.44,0.8,90.28,27.54,9.78,1.92,24.4,0.05 +2020-02-16 17:00:00,55.54,119.06,36.17,31.58,14.26,0.82,86.45,29.69,10.19,1.81,17.14,0.54 +2020-02-16 18:00:00,57.38,125.82,43.89,32.0,14.87,0.86,70.1,37.02,14.4,2.27,20.13,0.0 +2020-02-16 19:00:00,69.84,159.72,74.03,33.82,15.42,1.42,30.1,71.57,33.77,3.51,25.12,1.3 +2020-02-16 20:00:00,101.31,254.69,87.91,37.0,15.59,2.02,17.5,105.83,61.84,4.6,30.66,0.13 +2020-02-16 21:00:00,139.6,303.73,89.96,40.38,16.25,2.72,17.32,142.35,100.71,5.92,44.72,0.48 +2020-02-16 22:00:00,171.08,352.41,89.13,43.38,17.85,3.58,19.22,179.5,141.63,6.44,54.0,1.34 +2020-02-16 23:00:00,202.72,390.58,88.18,45.32,18.48,3.72,20.1,190.84,146.59,6.54,55.95,2.53 +2020-02-17 00:00:00,206.02,408.39,84.28,47.13,20.42,3.53,18.95,167.18,146.73,7.41,55.08,2.19 +2020-02-17 01:00:00,203.13,366.97,82.4,47.56,20.93,3.27,18.43,171.64,156.75,8.15,59.12,2.57 +2020-02-17 02:00:00,205.96,343.92,76.3,49.11,16.76,2.99,20.76,175.67,151.33,7.97,57.96,2.57 +2020-02-17 03:00:00,198.73,331.91,69.8,48.76,15.84,2.64,20.19,163.84,143.49,10.84,52.47,2.33 +2020-02-17 04:00:00,205.14,334.73,63.13,51.15,16.59,2.23,19.73,139.03,116.95,11.51,48.73,1.11 +2020-02-17 05:00:00,219.49,345.85,58.99,49.53,14.55,1.88,20.47,121.13,92.15,11.64,38.69,2.18 +2020-02-17 06:00:00,231.45,358.01,54.14,50.45,17.5,1.75,19.11,101.69,79.96,8.95,30.6,1.65 +2020-02-17 07:00:00,250.18,381.03,53.72,52.55,20.04,1.66,21.76,100.83,80.08,5.62,25.57,0.98 +2020-02-17 08:00:00,266.09,408.22,59.23,52.9,21.14,1.69,22.68,108.35,85.69,5.71,21.29,0.99 +2020-02-17 09:00:00,276.4,428.45,69.82,52.12,30.35,1.59,23.72,97.27,66.29,5.57,18.73,0.77 +2020-02-17 10:00:00,270.34,424.66,64.16,48.35,35.26,1.46,31.78,71.47,38.96,4.92,15.82,1.36 +2020-02-17 11:00:00,218.69,351.1,55.36,46.55,27.35,1.14,49.01,56.77,27.17,4.95,16.95,2.39 +2020-02-17 12:00:00,142.5,251.11,44.99,42.59,20.1,0.89,65.9,42.57,18.44,5.49,17.93,2.51 +2020-02-17 13:00:00,105.91,194.88,38.36,40.7,15.61,0.73,76.89,33.82,13.04,4.75,16.31,3.13 +2020-02-17 14:00:00,82.9,158.72,36.68,36.68,12.06,0.64,78.82,30.96,11.77,3.6,18.92,0.1 +2020-02-17 15:00:00,62.55,144.6,34.64,33.68,11.31,0.62,77.27,31.81,13.97,2.31,11.85,0.0 +2020-02-17 16:00:00,49.81,129.22,34.96,32.26,10.27,0.61,78.97,29.79,10.25,2.13,12.5,0.0 +2020-02-17 17:00:00,44.01,121.38,40.14,31.44,13.08,0.71,77.17,33.64,12.42,2.57,14.65,0.0 +2020-02-17 18:00:00,50.28,129.99,49.65,31.11,11.14,0.72,65.77,43.75,19.51,2.2,13.44,0.03 +2020-02-17 19:00:00,59.35,157.26,71.78,31.61,13.98,1.24,37.08,62.64,24.14,3.1,25.84,0.21 +2020-02-17 20:00:00,80.6,213.65,82.31,35.02,18.48,1.68,22.1,81.75,40.2,5.68,40.26,0.27 +2020-02-17 21:00:00,112.98,263.36,84.48,37.42,21.75,1.81,18.29,92.69,45.23,5.24,44.87,0.22 +2020-02-17 22:00:00,132.38,277.34,81.82,38.57,24.48,1.77,19.98,87.28,47.39,5.08,43.48,0.09 +2020-02-17 23:00:00,133.58,263.43,76.95,39.13,23.4,1.47,21.45,78.3,33.66,4.52,32.92,1.05 +2020-02-18 00:00:00,136.63,249.95,74.28,39.28,25.71,1.3,20.7,73.12,34.69,4.74,24.29,0.13 +2020-02-18 01:00:00,144.79,245.63,73.84,39.84,26.63,1.17,19.91,71.1,31.23,4.19,19.12,0.26 +2020-02-18 02:00:00,149.14,243.71,68.27,40.8,26.18,1.06,24.91,65.7,29.37,5.5,17.14,0.24 +2020-02-18 03:00:00,148.33,230.38,63.08,41.51,25.34,0.97,24.11,58.08,25.46,4.14,15.27,0.21 +2020-02-18 04:00:00,150.7,227.42,60.01,40.3,27.0,0.97,22.91,53.93,22.74,3.39,13.76,0.86 +2020-02-18 05:00:00,164.09,239.65,59.12,40.98,27.41,0.92,24.67,53.46,22.94,3.24,12.12,2.72 +2020-02-18 06:00:00,168.84,246.75,57.38,40.59,27.33,0.95,24.67,56.71,28.01,3.18,10.76,1.54 +2020-02-18 07:00:00,169.29,256.27,57.18,40.54,26.06,1.06,22.62,61.27,32.11,3.68,10.41,0.09 +2020-02-18 08:00:00,173.89,272.31,59.92,40.68,31.02,1.19,23.16,66.41,30.78,3.3,10.14,0.04 +2020-02-18 09:00:00,172.11,295.05,58.8,40.92,33.04,1.22,30.47,60.82,31.07,3.41,10.15,0.12 +2020-02-18 10:00:00,163.1,299.94,54.16,39.41,29.53,1.15,44.31,51.43,23.15,3.31,10.26,0.53 +2020-02-18 11:00:00,139.26,264.73,48.67,37.46,25.23,1.1,58.6,44.3,18.8,3.73,12.12,0.1 +2020-02-18 12:00:00,122.37,241.18,43.87,35.67,21.71,1.0,72.54,35.85,14.94,3.76,16.52,0.92 +2020-02-18 13:00:00,101.55,209.81,40.23,34.48,18.42,0.89,79.57,31.13,11.53,3.51,16.8,1.66 +2020-02-18 14:00:00,77.12,180.75,37.42,32.58,16.0,0.85,85.9,27.45,8.69,2.69,15.7,0.02 +2020-02-18 15:00:00,61.1,157.45,34.53,31.41,14.16,0.75,86.61,25.93,9.15,2.54,12.3,0.03 +2020-02-18 16:00:00,54.82,143.52,35.5,31.27,15.29,0.72,88.11,25.5,9.09,2.11,12.12,0.04 +2020-02-18 17:00:00,55.44,137.95,38.19,30.15,16.86,0.75,86.45,30.48,11.55,2.24,13.12,0.01 +2020-02-18 18:00:00,57.76,138.0,49.88,28.4,17.51,0.89,71.37,42.29,17.9,2.45,15.46,0.0 +2020-02-18 19:00:00,67.91,176.29,74.17,29.63,17.2,1.39,34.39,65.33,29.46,3.75,23.39,0.04 +2020-02-18 20:00:00,90.58,236.44,87.22,31.62,17.95,2.21,18.85,101.89,62.34,6.03,41.03,0.35 +2020-02-18 21:00:00,122.9,297.93,87.22,34.65,20.38,3.11,17.23,142.77,110.24,6.62,53.23,0.97 +2020-02-18 22:00:00,148.09,359.95,87.97,39.22,21.66,3.62,19.26,171.43,146.22,8.56,56.12,9.27 +2020-02-18 23:00:00,172.92,382.89,87.03,46.79,24.54,4.08,23.46,196.66,179.94,9.25,67.26,14.79 +2020-02-19 00:00:00,189.16,389.97,83.97,47.85,25.69,4.16,24.77,211.89,193.87,8.38,68.53,4.44 +2020-02-19 01:00:00,191.22,388.67,79.92,50.11,21.62,3.89,25.71,213.39,196.18,11.28,62.41,3.18 +2020-02-19 02:00:00,191.82,375.26,73.96,50.57,18.55,3.75,26.94,212.89,196.15,7.54,65.41,3.67 +2020-02-19 03:00:00,188.63,349.63,71.92,52.06,17.06,3.59,28.84,215.8,210.38,10.7,64.49,1.73 +2020-02-19 04:00:00,182.87,326.48,63.51,50.26,17.94,3.35,27.72,189.05,189.63,16.08,58.86,5.44 +2020-02-19 05:00:00,182.25,324.73,59.47,51.64,18.41,3.29,26.75,227.91,195.77,9.26,62.89,3.54 +2020-02-19 06:00:00,186.83,332.59,57.96,56.62,18.73,3.32,28.79,237.71,215.96,7.72,67.92,2.84 +2020-02-19 07:00:00,190.19,350.18,58.8,54.72,18.66,3.21,31.98,227.81,213.72,8.15,64.36,3.23 +2020-02-19 08:00:00,195.21,372.21,68.6,52.42,22.31,2.88,29.0,220.79,187.77,7.95,63.08,2.65 +2020-02-19 09:00:00,200.51,403.91,87.89,51.54,35.2,2.22,27.98,163.85,125.02,10.82,54.33,2.97 +2020-02-19 10:00:00,192.75,377.14,74.2,45.28,29.59,1.59,37.24,84.27,47.43,5.95,35.94,2.47 +2020-02-19 11:00:00,149.25,305.36,53.93,40.22,23.88,0.98,59.36,50.24,24.55,4.61,23.89,1.59 +2020-02-19 12:00:00,105.63,242.13,45.43,36.68,18.63,0.87,67.2,36.83,14.43,4.59,18.99,0.82 +2020-02-19 13:00:00,83.97,216.89,42.84,36.21,15.94,0.83,69.24,31.53,9.87,4.53,14.41,0.54 +2020-02-19 14:00:00,74.01,196.18,40.07,35.39,15.0,0.76,74.07,28.31,7.52,3.72,13.47,0.54 +2020-02-19 15:00:00,69.17,188.21,41.51,35.74,14.64,0.78,75.36,28.99,7.54,3.8,13.11,0.35 +2020-02-19 16:00:00,81.52,201.04,39.32,35.59,14.79,0.77,72.87,27.21,6.65,3.09,12.6,0.32 +2020-02-19 17:00:00,84.0,205.01,40.98,35.07,16.56,0.81,71.18,28.47,7.57,3.12,17.8,0.18 +2020-02-19 18:00:00,79.22,205.18,49.63,38.55,19.82,0.93,63.14,33.18,7.43,3.13,16.06,1.11 +2020-02-19 19:00:00,86.23,213.93,56.79,38.2,16.54,1.1,48.13,37.68,8.17,3.17,17.45,2.02 +2020-02-19 20:00:00,90.09,219.23,60.15,40.26,20.22,1.2,42.47,40.47,9.18,3.72,20.51,3.01 +2020-02-19 21:00:00,102.51,231.02,64.14,41.45,21.73,1.29,36.18,45.35,11.68,4.23,21.82,0.18 +2020-02-19 22:00:00,114.38,238.02,63.36,41.47,21.32,1.26,33.11,45.35,12.27,3.92,19.04,0.25 +2020-02-19 23:00:00,111.58,220.34,59.19,40.63,20.2,1.16,34.97,43.63,12.35,3.84,16.43,4.68 +2020-02-20 00:00:00,108.81,210.04,56.48,40.16,18.85,1.07,40.16,42.63,13.2,3.49,14.34,1.85 +2020-02-20 01:00:00,107.69,199.79,51.13,39.76,20.55,0.99,40.18,37.63,10.77,3.25,14.63,0.08 +2020-02-20 02:00:00,100.65,180.3,45.73,39.99,19.09,0.88,43.44,32.54,8.56,3.28,14.95,0.11 +2020-02-20 03:00:00,98.07,173.36,48.38,40.45,15.44,0.87,42.38,35.75,10.42,2.99,13.06,0.1 +2020-02-20 04:00:00,105.36,177.77,47.08,39.43,19.89,0.88,40.45,34.69,10.31,3.02,13.04,0.26 +2020-02-20 05:00:00,112.34,178.44,46.55,39.44,18.44,0.88,38.96,33.59,9.44,3.11,12.13,0.08 +2020-02-20 06:00:00,116.45,181.64,48.34,39.75,14.87,0.95,34.94,36.24,11.7,3.11,10.78,0.09 +2020-02-20 07:00:00,118.92,190.14,53.47,40.03,14.31,1.04,31.38,41.35,14.48,3.14,10.82,0.3 +2020-02-20 08:00:00,123.45,204.73,54.95,41.03,13.87,1.15,29.7,45.87,18.86,3.24,10.94,0.04 +2020-02-20 09:00:00,127.19,224.59,51.57,41.4,15.54,1.17,39.23,40.79,15.29,3.32,10.73,0.07 +2020-02-20 10:00:00,119.51,243.99,45.37,40.52,16.06,1.1,54.56,34.69,11.94,2.97,9.75,3.76 +2020-02-20 11:00:00,107.23,280.3,38.22,39.59,15.56,1.02,70.99,28.02,8.55,2.86,9.48,0.14 +2020-02-20 12:00:00,95.05,293.82,34.49,38.47,14.39,0.91,81.82,24.81,6.99,2.79,10.84,0.08 +2020-02-20 13:00:00,85.15,328.65,39.05,37.94,12.74,0.86,85.04,27.23,18.93,2.58,9.57,0.0 +2020-02-20 14:00:00,75.63,319.48,30.63,37.64,12.87,0.84,84.64,22.68,6.64,2.41,9.75,0.0 +2020-02-20 15:00:00,68.87,276.81,31.97,36.78,12.65,0.84,80.89,24.03,7.02,2.36,10.09,0.03 +2020-02-20 16:00:00,65.11,242.15,33.79,36.36,11.67,0.86,78.13,25.23,6.63,2.21,10.94,0.0 +2020-02-20 17:00:00,62.72,223.03,37.1,37.2,12.64,0.89,74.66,28.18,7.56,2.18,10.92,0.0 +2020-02-20 18:00:00,67.23,200.42,41.52,37.56,12.55,0.96,67.82,30.84,7.97,2.38,10.71,0.0 +2020-02-20 19:00:00,74.88,197.86,46.69,38.8,11.77,1.08,56.67,33.75,7.99,2.49,12.17,0.09 +2020-02-20 20:00:00,87.24,199.83,47.45,40.74,13.05,1.15,53.61,33.38,7.6,2.9,13.42,0.25 +2020-02-20 21:00:00,106.96,212.06,42.68,42.24,14.5,1.13,57.95,29.45,6.62,2.95,12.31,0.11 +2020-02-20 22:00:00,118.19,218.39,42.2,42.95,14.67,1.14,55.32,29.23,6.77,2.95,14.35,0.02 +2020-02-20 23:00:00,119.43,211.02,42.25,42.31,11.96,1.07,44.67,31.08,8.76,3.17,15.56,2.76 +2020-02-21 00:00:00,110.1,177.77,40.81,42.11,9.77,0.99,36.65,30.13,9.44,2.99,16.21,0.86 +2020-02-21 01:00:00,105.45,140.92,39.62,42.48,10.36,0.97,37.21,28.36,7.64,3.08,20.38,0.0 +2020-02-21 02:00:00,111.1,144.8,36.55,43.93,10.54,0.96,36.78,26.84,8.52,2.82,18.61,0.15 +2020-02-21 03:00:00,102.56,137.05,33.41,45.59,9.13,0.89,37.44,25.29,7.59,2.65,16.83,0.25 +2020-02-21 04:00:00,89.36,121.36,30.4,40.96,9.69,0.79,45.01,23.12,7.03,2.36,18.72,0.06 +2020-02-21 05:00:00,70.69,95.82,29.58,38.66,10.13,0.75,47.6,22.38,7.18,2.08,13.04,2.05 +2020-02-21 06:00:00,60.21,85.74,27.24,38.48,9.91,0.71,49.82,20.31,6.92,1.88,14.74,0.08 +2020-02-21 07:00:00,47.08,67.55,24.86,36.06,10.16,0.64,52.52,19.0,6.31,2.35,14.4,0.14 +2020-02-21 08:00:00,34.31,50.18,28.04,36.23,9.83,0.67,45.38,21.16,6.63,1.22,12.05,0.0 +2020-02-21 09:00:00,32.8,46.33,29.66,34.42,10.61,0.71,42.59,22.45,6.97,1.47,10.24,0.07 +2020-02-21 10:00:00,37.96,58.0,30.1,35.29,12.18,0.75,43.75,22.6,7.57,1.34,10.05,0.06 +2020-02-21 11:00:00,48.05,80.18,28.84,34.76,13.0,0.77,46.86,23.62,8.7,1.47,12.92,0.02 +2020-02-21 12:00:00,41.37,82.09,25.41,34.56,11.4,0.81,47.25,21.8,8.4,1.56,16.53,1.32 +2020-02-21 13:00:00,42.87,84.19,26.56,34.78,10.93,0.75,46.44,22.9,8.41,1.63,24.28,1.24 +2020-02-21 14:00:00,32.8,67.47,26.7,33.49,9.74,0.72,43.13,21.35,6.97,1.63,17.26,0.06 +2020-02-21 15:00:00,21.54,52.87,29.34,31.15,10.63,0.81,40.67,23.56,7.79,1.5,20.2,0.0 +2020-02-21 16:00:00,20.32,47.39,29.01,30.74,10.45,0.83,43.92,23.43,8.21,1.51,19.71,0.05 +2020-02-21 17:00:00,20.64,47.9,27.7,31.13,10.05,0.74,48.41,22.38,7.65,1.63,20.75,0.15 +2020-02-21 18:00:00,22.95,49.87,31.81,30.84,10.26,0.73,45.43,24.92,8.26,1.79,22.43,0.12 +2020-02-21 19:00:00,25.55,54.37,38.5,31.69,10.57,0.84,33.97,28.89,8.25,1.99,33.27,0.1 +2020-02-21 20:00:00,36.93,73.52,45.16,32.43,10.86,0.98,24.24,35.17,11.07,2.38,42.47,0.06 +2020-02-21 21:00:00,48.32,88.49,45.71,33.06,10.23,0.98,20.41,35.93,11.72,2.42,37.56,0.01 +2020-02-21 22:00:00,54.43,96.4,47.22,33.43,10.17,1.02,18.4,40.23,15.47,2.51,29.21,0.09 +2020-02-21 23:00:00,57.31,101.41,46.15,33.1,10.31,1.03,16.11,43.84,19.39,2.41,23.29,0.66 +2020-02-22 00:00:00,60.98,99.64,44.09,33.68,10.99,1.0,14.81,42.22,19.29,2.76,22.85,0.32 +2020-02-22 01:00:00,63.66,97.66,40.52,32.7,9.91,0.9,18.43,37.91,16.67,2.65,24.28,0.0 +2020-02-22 02:00:00,62.33,93.57,38.25,33.6,9.81,0.83,15.6,35.14,14.79,3.0,22.79,0.08 +2020-02-22 03:00:00,58.16,87.24,35.84,33.58,13.63,0.8,15.53,32.01,13.07,2.74,18.84,0.28 +2020-02-22 04:00:00,50.81,79.59,36.12,32.22,10.27,0.77,14.64,34.61,15.58,2.39,16.26,0.24 +2020-02-22 05:00:00,51.47,81.99,36.56,30.36,10.2,0.76,18.72,36.16,16.64,2.18,17.36,0.26 +2020-02-22 06:00:00,49.03,78.77,36.99,30.62,10.66,0.77,22.39,37.31,18.31,2.04,17.42,0.6 +2020-02-22 07:00:00,53.99,85.48,37.22,30.38,10.24,0.84,21.89,41.2,22.58,2.07,15.13,0.61 +2020-02-22 08:00:00,56.38,93.87,38.82,31.82,11.49,0.98,18.58,50.13,31.7,2.38,15.75,0.26 +2020-02-22 09:00:00,61.55,118.8,42.56,32.52,13.28,1.07,22.41,52.0,31.48,2.45,13.76,0.22 +2020-02-22 10:00:00,61.08,120.79,40.5,32.33,16.2,1.02,29.93,39.15,18.43,2.41,15.15,3.38 +2020-02-22 11:00:00,57.18,114.43,36.54,32.61,16.54,0.9,37.68,31.69,12.51,2.21,15.68,2.57 +2020-02-22 12:00:00,56.05,103.92,33.7,33.86,16.59,0.86,46.97,28.46,10.36,2.07,14.51,4.08 +2020-02-22 13:00:00,54.28,101.72,31.41,34.79,17.4,0.84,56.29,26.06,9.52,1.97,27.14,0.0 +2020-02-22 14:00:00,53.2,108.4,29.68,35.91,16.81,0.92,60.79,23.55,8.55,1.82,14.43,6.38 +2020-02-22 15:00:00,52.9,97.94,27.99,32.53,15.57,0.81,68.17,21.82,6.93,1.79,17.66,0.09 +2020-02-22 16:00:00,53.74,100.55,29.16,32.77,15.61,0.79,67.87,22.7,7.21,1.85,26.56,0.0 +2020-02-22 17:00:00,51.34,101.94,29.13,32.59,14.49,0.76,65.31,22.17,6.8,2.11,22.08,0.45 +2020-02-22 18:00:00,48.64,99.88,34.35,31.35,13.83,0.83,51.9,26.58,8.2,2.06,26.34,0.1 +2020-02-22 19:00:00,51.93,116.41,49.83,33.15,12.37,1.19,29.3,42.83,16.33,2.31,35.78,0.14 +2020-02-22 20:00:00,68.52,173.53,62.67,35.04,12.27,1.94,18.62,86.18,55.68,3.99,44.39,0.64 +2020-02-22 21:00:00,96.95,236.96,66.78,36.05,13.08,2.86,17.68,134.47,103.04,5.28,39.6,1.17 +2020-02-22 22:00:00,118.26,274.34,66.87,38.26,14.34,3.31,17.75,154.01,128.13,5.89,46.9,1.75 +2020-02-22 23:00:00,134.38,295.09,63.93,40.28,15.53,3.15,17.56,144.44,124.89,6.78,43.54,10.44 +2020-02-23 00:00:00,137.69,281.97,60.22,41.98,15.57,2.7,17.72,134.31,114.6,6.19,46.02,7.46 +2020-02-23 01:00:00,140.72,265.8,58.71,41.68,15.02,2.08,17.9,119.44,97.58,6.43,47.63,7.14 +2020-02-23 02:00:00,137.26,242.3,50.37,41.36,15.24,1.8,19.53,110.62,91.05,5.08,47.6,3.5 +2020-02-23 03:00:00,135.27,221.16,47.83,41.39,12.57,1.61,18.97,103.43,85.11,5.18,41.22,5.51 +2020-02-23 04:00:00,134.37,212.48,45.4,40.04,11.94,1.54,17.32,91.61,72.69,4.83,35.34,1.98 +2020-02-23 05:00:00,127.98,197.74,43.39,38.9,11.6,1.37,17.88,84.93,66.65,4.71,32.41,2.17 +2020-02-23 06:00:00,122.95,193.07,41.15,38.61,11.05,1.38,18.41,85.98,70.04,4.46,33.08,0.49 +2020-02-23 07:00:00,124.59,196.06,39.7,38.5,10.69,1.42,16.12,92.77,78.11,4.7,32.29,0.5 +2020-02-23 08:00:00,134.92,218.75,41.01,39.48,12.05,1.51,17.98,96.05,82.29,4.88,28.24,0.8 +2020-02-23 09:00:00,138.3,229.74,50.05,40.72,14.18,1.45,19.98,85.76,65.57,4.73,29.27,2.81 +2020-02-23 10:00:00,149.98,236.91,56.24,41.88,19.7,1.4,21.85,65.98,38.26,4.21,23.34,0.38 +2020-02-23 11:00:00,140.07,224.01,51.58,41.67,21.18,1.26,32.94,50.18,22.79,3.63,22.12,0.15 +2020-02-23 12:00:00,112.78,186.28,38.55,38.73,19.49,1.05,51.74,35.44,14.87,2.97,30.04,0.05 +2020-02-23 13:00:00,86.15,144.65,30.57,36.44,15.93,0.86,63.2,26.75,10.19,2.33,23.12,0.05 +2020-02-23 14:00:00,70.44,121.72,27.94,35.85,14.65,0.81,73.62,23.21,7.83,1.99,15.12,0.02 +2020-02-23 15:00:00,68.65,122.79,27.86,36.35,13.85,0.76,78.49,22.51,7.37,1.8,13.46,0.73 +2020-02-23 16:00:00,66.44,119.3,28.88,36.39,14.1,0.74,72.14,24.06,8.85,1.9,12.41,1.47 +2020-02-23 17:00:00,70.0,126.54,31.26,36.31,14.06,0.74,68.04,26.1,8.75,1.61,11.54,0.52 +2020-02-23 18:00:00,69.89,131.45,34.44,35.97,14.75,0.82,54.05,28.64,9.75,1.62,12.77,0.02 +2020-02-23 19:00:00,73.49,138.63,42.66,36.68,14.99,0.97,36.4,32.91,9.34,1.92,30.13,0.11 +2020-02-23 20:00:00,82.97,156.99,48.85,37.6,14.13,1.17,25.41,38.58,11.73,2.5,32.23,0.21 +2020-02-23 21:00:00,88.02,165.41,43.31,37.01,13.5,1.08,25.04,33.68,9.72,2.68,32.58,0.13 +2020-02-23 22:00:00,76.7,143.43,34.1,34.09,11.97,0.81,33.1,26.53,8.09,2.13,18.72,0.5 +2020-02-23 23:00:00,47.36,95.54,39.74,32.32,11.01,0.84,25.81,36.62,15.93,1.71,16.12,0.62 +2020-02-24 00:00:00,47.0,111.6,45.33,30.92,10.16,0.96,22.16,58.56,35.41,1.73,11.11,0.21 +2020-02-24 01:00:00,49.3,128.63,47.22,31.28,10.17,1.11,17.78,77.08,55.47,1.9,12.41,0.19 +2020-02-24 02:00:00,53.39,128.46,44.72,32.63,10.68,1.15,16.27,78.15,59.01,2.27,13.71,0.19 +2020-02-24 03:00:00,59.73,128.16,42.88,33.15,11.88,1.05,16.31,70.05,51.24,2.78,19.65,0.08 +2020-02-24 04:00:00,71.76,134.43,42.98,31.93,12.12,0.93,15.85,60.95,40.48,2.46,28.09,0.25 +2020-02-24 05:00:00,77.72,131.75,40.45,31.77,11.5,0.88,16.46,51.27,31.2,2.16,18.6,0.02 +2020-02-24 06:00:00,70.89,121.12,39.62,30.93,11.71,0.85,16.54,48.09,29.01,2.21,20.76,0.02 +2020-02-24 07:00:00,61.37,107.97,40.07,30.28,11.46,0.94,15.75,63.14,45.61,2.16,14.89,0.01 +2020-02-24 08:00:00,66.89,130.76,43.05,30.67,12.68,1.18,16.6,79.6,62.33,2.32,14.27,0.0 +2020-02-24 09:00:00,82.8,169.21,51.36,33.1,16.39,1.22,19.27,73.27,50.5,2.85,13.28,0.0 +2020-02-24 10:00:00,88.93,183.87,53.83,33.51,18.91,1.15,25.62,60.89,34.42,2.76,19.58,0.05 +2020-02-24 11:00:00,78.36,167.68,46.36,33.68,22.65,0.99,36.58,43.5,18.84,2.43,21.95,0.17 +2020-02-24 12:00:00,66.74,143.47,40.84,33.24,25.35,0.91,48.66,35.67,13.71,2.09,22.55,0.1 +2020-02-24 13:00:00,60.87,132.37,35.42,32.75,23.43,0.83,58.94,29.16,9.91,1.91,22.71,0.03 +2020-02-24 14:00:00,56.25,119.9,31.88,32.29,20.92,0.76,71.07,25.48,8.09,1.94,18.02,0.01 +2020-02-24 15:00:00,57.48,123.5,30.62,32.52,19.11,0.73,74.57,23.89,7.25,1.98,25.29,0.0 +2020-02-24 16:00:00,55.87,127.86,29.56,31.92,18.5,0.71,75.24,23.44,7.54,1.51,21.07,0.04 +2020-02-24 17:00:00,54.59,119.4,31.11,32.79,17.66,0.7,69.34,25.59,9.12,1.4,15.17,0.01 +2020-02-24 18:00:00,59.18,122.78,36.29,32.86,16.81,0.76,53.63,28.29,8.19,1.44,14.06,0.0 +2020-02-24 19:00:00,65.72,144.31,51.83,33.81,15.36,1.06,32.97,42.29,12.87,1.97,24.86,0.82 +2020-02-24 20:00:00,82.57,173.72,60.27,36.46,15.69,1.31,21.63,54.75,20.62,2.73,23.23,0.27 +2020-02-24 21:00:00,102.32,203.26,61.04,38.75,17.21,1.45,20.57,61.28,28.02,3.09,36.5,0.22 +2020-02-24 22:00:00,112.21,214.08,58.3,37.71,15.81,1.43,19.27,62.08,30.72,3.43,38.92,0.36 +2020-02-24 23:00:00,112.29,213.02,55.69,37.5,16.43,1.36,19.56,61.88,31.97,3.34,30.83,0.89 +2020-02-25 00:00:00,110.06,203.8,56.29,37.19,15.99,1.23,17.54,61.15,30.75,3.13,24.73,0.38 +2020-02-25 01:00:00,110.1,191.6,54.04,37.11,14.81,1.22,17.74,66.44,38.34,3.12,22.78,0.22 +2020-02-25 02:00:00,117.26,207.25,49.97,40.82,14.33,1.21,16.23,64.38,38.48,3.21,20.23,0.06 +2020-02-25 03:00:00,129.21,217.97,45.23,42.48,14.79,1.11,17.71,56.84,33.35,3.27,19.58,0.08 +2020-02-25 04:00:00,140.21,233.42,46.35,44.24,15.24,1.06,16.87,51.36,26.5,3.77,18.83,0.0 +2020-02-25 05:00:00,167.27,265.96,44.4,44.18,16.22,1.05,19.8,47.73,23.96,3.46,15.95,0.0 +2020-02-25 06:00:00,179.81,281.28,43.36,44.64,15.67,1.07,16.53,50.88,28.86,3.08,12.15,0.19 +2020-02-25 07:00:00,174.25,279.06,43.21,43.51,15.5,1.21,19.94,60.06,39.79,3.0,11.33,0.51 +2020-02-25 08:00:00,170.91,287.41,43.8,45.43,16.25,1.32,20.5,65.75,45.38,3.16,13.01,0.1 +2020-02-25 09:00:00,195.97,316.5,46.81,45.49,21.06,1.36,27.46,60.22,36.91,3.25,15.54,0.08 +2020-02-25 10:00:00,198.26,313.55,48.36,44.9,25.86,1.28,31.13,52.22,26.57,3.31,11.32,0.1 +2020-02-25 11:00:00,185.2,292.46,44.51,44.02,28.07,1.25,44.78,41.74,17.15,3.5,13.45,0.23 +2020-02-25 12:00:00,157.15,255.11,39.64,42.23,30.02,1.24,58.4,33.94,11.72,3.66,15.95,0.39 +2020-02-25 13:00:00,122.34,204.61,35.87,39.49,27.52,1.03,71.43,28.97,7.78,3.28,18.09,0.18 +2020-02-25 14:00:00,100.04,172.28,29.83,37.6,20.59,0.91,73.82,24.35,7.24,2.52,14.32,0.02 +2020-02-25 15:00:00,82.17,142.24,28.03,35.48,17.34,0.8,71.9,23.13,6.92,2.1,11.75,0.03 +2020-02-25 16:00:00,64.92,120.15,27.43,32.95,14.98,0.71,71.0,23.14,7.78,1.83,11.52,0.2 +2020-02-25 17:00:00,57.02,113.33,29.45,31.45,13.95,0.71,68.91,24.44,7.73,1.42,22.91,0.01 +2020-02-25 18:00:00,54.62,118.13,37.58,30.71,13.94,0.81,56.39,31.18,9.87,1.68,15.06,0.06 +2020-02-25 19:00:00,69.76,157.49,55.71,33.0,14.57,1.11,34.35,46.61,15.31,2.41,17.47,3.04 +2020-02-25 20:00:00,88.18,200.88,66.25,35.29,16.13,1.48,20.33,62.66,26.42,3.2,20.72,0.29 +2020-02-25 21:00:00,111.25,238.03,68.45,37.4,17.88,1.83,18.6,82.66,48.42,3.63,28.28,0.44 +2020-02-25 22:00:00,132.0,269.53,69.93,40.12,18.38,2.07,17.38,97.08,64.24,4.49,33.33,6.86 +2020-02-25 23:00:00,147.92,294.43,67.78,40.84,18.61,2.12,18.94,100.13,69.5,5.39,40.56,0.8 +2020-02-26 00:00:00,160.74,294.59,63.15,41.76,18.64,2.14,19.17,104.99,78.44,7.15,47.54,0.76 +2020-02-26 01:00:00,178.46,317.25,60.03,44.69,17.41,2.13,21.74,115.28,92.13,6.38,39.58,1.08 +2020-02-26 02:00:00,192.19,338.5,53.44,47.18,16.92,2.2,21.99,123.08,105.87,6.05,37.16,1.06 +2020-02-26 03:00:00,190.4,336.85,49.2,48.4,15.36,2.14,24.1,131.29,118.98,6.16,38.12,0.86 +2020-02-26 04:00:00,185.42,329.12,49.06,45.54,15.67,1.93,28.09,116.84,103.19,5.59,40.32,0.75 +2020-02-26 05:00:00,171.59,290.69,45.34,44.37,16.13,1.86,27.13,112.3,100.24,5.69,36.01,0.8 +2020-02-26 06:00:00,167.88,275.62,44.97,43.91,15.2,1.9,21.14,118.72,108.07,6.11,35.59,1.61 +2020-02-26 07:00:00,164.91,271.0,45.29,45.76,15.16,1.93,21.63,122.3,110.49,6.0,34.58,1.4 +2020-02-26 08:00:00,177.15,302.63,51.96,48.44,16.99,1.98,23.16,130.26,115.29,5.73,31.45,0.9 +2020-02-26 09:00:00,205.22,362.83,66.02,51.07,21.09,1.85,24.01,111.1,85.18,5.66,30.01,9.39 +2020-02-26 10:00:00,218.89,374.41,73.12,50.7,27.73,1.64,28.26,85.48,49.67,5.13,26.89,2.99 +2020-02-26 11:00:00,204.17,327.1,53.67,47.08,28.08,1.25,42.49,54.49,26.02,4.66,24.57,0.25 +2020-02-26 12:00:00,143.87,240.07,40.52,40.37,23.34,0.98,57.64,37.68,16.3,3.67,19.36,0.23 +2020-02-26 13:00:00,110.37,186.52,35.37,37.3,19.0,0.84,71.41,31.9,12.68,2.93,17.89,1.63 +2020-02-26 14:00:00,93.49,163.76,29.9,34.38,16.13,0.73,80.19,25.29,9.12,2.72,21.44,1.01 +2020-02-26 15:00:00,78.17,138.79,29.95,32.87,14.76,0.68,79.6,25.84,9.73,2.51,20.77,1.67 +2020-02-26 16:00:00,67.13,127.6,29.44,31.64,15.08,0.67,78.62,25.25,9.69,2.23,17.42,0.81 +2020-02-26 17:00:00,58.43,118.01,29.48,39.23,13.82,0.69,75.45,25.58,10.04,1.98,21.72,1.49 +2020-02-26 18:00:00,58.0,129.1,38.38,31.0,14.64,0.8,60.18,32.35,11.84,2.19,13.63,2.32 +2020-02-26 19:00:00,65.0,168.12,58.24,40.09,14.63,1.11,31.33,47.86,16.48,3.21,30.12,1.35 +2020-02-26 20:00:00,81.75,222.54,65.86,43.52,15.14,1.58,20.33,67.87,33.78,4.08,40.87,0.62 +2020-02-26 21:00:00,116.99,283.01,69.1,43.83,15.49,1.97,24.13,81.44,47.41,4.8,39.39,0.78 +2020-02-26 22:00:00,145.25,302.7,69.9,45.17,18.38,2.04,23.91,83.94,50.55,6.18,43.9,1.69 +2020-02-26 23:00:00,168.07,306.14,64.61,46.59,17.96,1.9,21.66,74.76,43.37,6.26,46.38,1.37 +2020-02-27 00:00:00,176.51,304.89,61.17,46.23,18.2,1.86,22.04,78.6,50.27,6.6,36.8,1.33 +2020-02-27 01:00:00,165.28,280.36,54.49,45.99,15.36,1.57,26.33,73.43,48.13,5.68,32.79,1.52 +2020-02-27 02:00:00,142.87,236.61,48.14,46.28,13.32,1.36,21.53,56.82,33.73,4.52,27.23,1.1 +2020-02-27 03:00:00,117.63,189.98,43.36,45.01,12.3,1.22,19.36,50.76,29.9,3.63,19.78,0.65 +2020-02-27 04:00:00,100.66,166.85,41.68,43.41,11.8,1.13,15.02,47.95,27.87,3.39,18.47,1.04 +2020-02-27 05:00:00,93.93,155.54,40.16,42.57,11.86,1.07,14.69,50.2,31.79,3.27,18.82,1.0 +2020-02-27 06:00:00,91.68,156.52,41.0,42.72,11.68,1.05,13.65,50.35,31.82,3.18,17.24,0.82 +2020-02-27 07:00:00,88.49,155.28,39.76,43.29,11.83,1.12,13.98,50.44,32.69,3.31,19.76,0.81 +2020-02-27 08:00:00,94.94,165.68,41.53,43.65,11.43,1.28,13.67,63.73,46.31,3.67,17.11,0.73 +2020-02-27 09:00:00,108.36,196.22,48.81,45.89,13.67,1.34,17.52,60.89,37.78,4.02,20.39,0.81 +2020-02-27 10:00:00,119.09,221.65,54.48,46.66,16.32,1.31,23.28,54.78,27.23,3.9,20.03,1.2 +2020-02-27 11:00:00,117.72,234.35,52.06,49.12,16.95,1.24,36.17,45.98,19.06,3.77,22.73,1.5 +2020-02-27 12:00:00,111.52,232.52,44.44,39.46,17.53,1.09,49.34,35.19,11.51,3.51,18.75,0.66 +2020-02-27 13:00:00,103.21,205.74,38.37,40.33,16.52,1.04,58.21,30.19,9.5,3.05,24.36,1.16 +2020-02-27 14:00:00,95.35,192.37,35.35,40.55,15.77,1.0,71.0,27.0,8.53,2.88,16.61,0.62 +2020-02-27 15:00:00,90.17,176.7,33.15,40.79,15.43,0.93,81.72,24.37,6.31,2.68,16.51,0.86 +2020-02-27 16:00:00,87.94,173.54,30.12,39.87,15.12,0.85,87.46,22.58,6.07,2.63,15.43,0.76 +2020-02-27 17:00:00,81.07,170.11,32.77,38.83,14.08,0.84,82.05,23.72,5.99,2.63,11.6,0.56 +2020-02-27 18:00:00,78.77,176.3,39.55,46.09,13.21,0.99,63.23,27.44,6.22,2.58,12.32,0.87 +2020-02-27 19:00:00,80.05,186.52,50.76,44.0,14.03,1.22,39.4,38.25,10.28,3.24,26.1,0.44 +2020-02-27 20:00:00,89.41,208.86,58.98,42.23,15.18,1.49,25.79,49.01,17.63,4.14,23.26,0.37 +2020-02-27 21:00:00,101.44,226.06,62.4,42.78,16.27,1.61,23.81,54.26,21.16,5.09,40.43,0.49 +2020-02-27 22:00:00,113.62,235.54,62.59,45.17,17.01,1.59,25.14,51.09,17.37,5.2,32.17,1.16 +2020-02-27 23:00:00,125.0,242.36,52.57,46.48,17.85,1.38,28.28,40.04,11.3,4.51,25.72,9.35 +2020-02-28 00:00:00,122.04,214.22,42.53,45.56,14.07,1.19,32.2,33.34,10.21,3.9,18.42,0.59 +2020-02-28 01:00:00,109.28,182.04,36.05,44.59,11.78,1.07,32.05,28.38,9.05,3.32,13.1,1.22 +2020-02-28 02:00:00,102.46,160.99,31.89,44.63,10.6,0.98,28.95,24.58,7.43,2.98,11.07,0.56 +2020-02-28 03:00:00,95.6,144.9,29.57,41.41,9.67,0.96,30.7,22.7,6.7,2.64,10.95,1.64 +2020-02-28 04:00:00,89.48,136.96,28.84,40.11,10.6,0.88,30.27,22.07,6.63,2.49,9.93,4.14 +2020-02-28 05:00:00,87.61,131.94,29.4,38.69,11.02,0.86,28.17,22.54,6.81,2.43,9.55,0.98 +2020-02-28 06:00:00,84.38,130.61,29.97,39.29,10.23,0.91,27.57,22.98,7.15,2.7,9.57,2.1 +2020-02-28 07:00:00,82.9,130.31,32.33,40.47,10.23,1.0,25.59,24.92,7.84,2.57,9.83,0.46 +2020-02-28 08:00:00,87.27,137.22,36.85,40.83,11.39,1.06,22.41,30.57,11.2,2.62,10.02,0.5 +2020-02-28 09:00:00,87.1,154.21,37.38,40.75,11.29,1.18,26.34,32.41,12.9,2.81,10.61,0.15 +2020-02-28 10:00:00,87.16,181.29,35.84,41.03,11.96,1.17,36.43,30.92,12.29,2.55,9.38,2.27 +2020-02-28 11:00:00,81.45,187.08,32.06,44.38,12.38,1.13,49.6,25.98,8.79,2.71,8.32,1.94 +2020-02-28 12:00:00,80.96,197.59,29.79,46.12,12.14,0.91,60.87,23.31,7.59,2.78,8.39,0.8 +2020-02-28 13:00:00,79.13,199.55,28.55,45.92,12.66,0.85,66.44,22.02,6.88,2.68,9.39,0.31 +2020-02-28 14:00:00,74.99,194.11,26.74,44.59,11.59,0.77,69.23,20.75,6.65,2.47,7.64,1.71 +2020-02-28 15:00:00,73.45,170.71,27.46,46.39,11.6,0.75,69.06,20.92,6.29,2.03,8.3,0.31 +2020-02-28 16:00:00,70.34,162.17,28.31,46.26,12.07,0.77,66.26,20.99,5.86,2.26,11.18,0.76 +2020-02-28 17:00:00,70.71,165.33,29.42,37.95,14.75,0.85,62.4,21.94,5.92,2.25,10.76,0.55 +2020-02-28 18:00:00,72.62,156.69,35.04,38.44,12.16,0.91,53.93,26.12,7.28,2.4,13.91,0.2 +2020-02-28 19:00:00,70.58,157.18,39.36,38.22,11.2,0.98,45.18,29.03,7.83,2.61,16.71,2.06 +2020-02-28 20:00:00,71.27,156.3,41.23,38.2,10.89,1.04,39.25,30.32,8.35,2.84,17.2,2.31 +2020-02-28 21:00:00,74.89,148.92,42.5,37.19,10.46,1.04,34.43,31.84,9.04,2.77,15.95,0.31 +2020-02-28 22:00:00,73.63,138.99,42.41,37.09,11.19,1.01,30.41,31.92,9.2,2.66,15.25,0.23 +2020-02-28 23:00:00,74.25,133.32,40.65,36.45,11.27,0.94,28.98,31.16,9.23,2.58,13.31,0.64 +2020-02-29 00:00:00,71.47,124.47,37.53,36.19,11.87,0.87,31.45,28.67,8.59,2.3,11.27,0.26 +2020-02-29 01:00:00,65.33,114.37,37.76,35.13,13.51,0.87,30.7,30.42,10.19,2.18,11.29,0.18 +2020-02-29 02:00:00,63.0,108.07,39.35,37.17,12.76,0.79,24.08,31.52,10.26,2.1,10.43,0.08 +2020-02-29 03:00:00,61.73,103.85,36.04,35.39,11.98,0.77,24.88,28.15,8.77,1.97,11.41,0.12 +2020-02-29 04:00:00,62.29,104.2,34.39,34.19,12.42,0.77,25.04,26.78,8.32,2.08,10.43,0.14 +2020-02-29 05:00:00,63.43,103.31,33.96,33.19,12.52,0.75,28.07,26.42,8.56,2.45,10.56,0.13 +2020-02-29 06:00:00,67.49,109.95,35.73,33.26,12.56,0.78,23.22,29.02,10.3,2.45,10.73,0.34 +2020-02-29 07:00:00,69.16,112.35,38.54,33.75,12.54,0.83,20.38,32.93,13.03,2.61,10.77,0.15 +2020-02-29 08:00:00,74.22,122.4,40.46,34.55,12.27,0.97,23.41,36.54,15.54,2.55,10.49,0.96 +2020-02-29 09:00:00,72.5,130.38,36.37,42.21,12.26,0.91,28.42,31.85,12.92,2.49,10.38,1.51 +2020-02-29 10:00:00,69.6,144.83,33.33,41.44,12.52,0.92,37.25,28.67,11.41,2.3,8.96,0.07 +2020-02-29 11:00:00,61.45,140.08,30.0,36.62,12.15,0.88,44.72,25.25,9.72,2.1,8.34,0.25 +2020-02-29 12:00:00,58.34,139.5,27.71,34.29,11.96,0.79,53.94,22.4,7.81,2.03,9.16,0.01 +2020-02-29 13:00:00,61.29,141.24,27.52,34.0,12.65,0.8,59.22,21.06,7.39,2.52,13.86,0.71 +2020-02-29 14:00:00,60.39,140.46,26.75,35.23,13.07,0.81,65.83,20.13,6.79,2.71,22.66,0.07 +2020-02-29 15:00:00,65.07,154.0,28.63,35.7,14.42,0.84,66.34,23.35,8.6,2.36,18.92,0.76 +2020-02-29 16:00:00,66.49,162.53,28.05,34.73,14.61,0.82,65.47,23.58,8.14,2.78,26.35,3.04 +2020-02-29 17:00:00,68.19,157.48,29.76,36.04,13.13,0.78,55.35,24.62,8.75,2.96,15.78,7.86 +2020-02-29 18:00:00,64.1,142.27,31.62,34.77,10.43,0.83,45.36,24.21,7.16,2.83,15.31,7.86 +2020-02-29 19:00:00,55.23,112.01,34.27,32.98,10.08,0.84,35.74,27.98,9.48,2.48,24.65,7.8 +2020-02-29 20:00:00,44.06,77.39,35.9,32.8,9.36,0.82,28.5,28.84,9.88,2.74,30.4,8.1 +2020-02-29 21:00:00,35.75,52.74,40.65,31.72,10.03,0.87,23.92,32.67,11.01,2.64,27.01,8.06 +2020-02-29 22:00:00,32.48,44.6,37.17,31.19,9.74,0.77,27.57,28.53,9.04,2.5,25.99,7.91 +2020-02-29 23:00:00,27.22,37.13,34.01,30.56,10.32,0.72,27.5,28.01,10.12,2.03,18.41,7.96 +2020-03-01 00:00:00,25.34,37.7,33.54,30.91,10.54,0.67,30.99,26.93,8.96,1.71,14.64,7.93 +2020-03-01 01:00:00,26.34,42.72,30.96,30.08,10.44,0.64,34.88,24.52,8.18,1.52,12.4,7.89 +2020-03-01 02:00:00,22.69,39.57,27.88,31.03,8.59,0.62,33.4,22.25,7.6,1.1,10.47,7.82 +2020-03-01 03:00:00,19.43,32.75,31.14,29.82,8.36,0.57,30.98,24.59,8.41,1.14,9.08,7.84 +2020-03-01 04:00:00,16.87,31.14,29.79,28.42,8.55,0.58,29.05,23.99,8.01,1.05,9.4,8.03 +2020-03-01 05:00:00,17.39,32.33,28.66,27.4,9.49,0.57,27.46,22.54,7.19,1.21,12.26,7.67 +2020-03-01 06:00:00,21.43,38.3,32.63,27.65,10.93,0.6,21.99,29.82,13.05,1.63,16.01,7.6 +2020-03-01 07:00:00,29.05,51.5,37.66,28.21,11.58,0.74,14.76,43.2,25.85,1.58,15.14,7.81 +2020-03-01 08:00:00,34.57,69.61,40.25,29.73,11.97,0.87,15.8,48.74,29.45,2.14,20.85,7.81 +2020-03-01 09:00:00,40.91,78.95,36.89,30.33,14.54,0.84,23.57,37.46,18.85,2.23,20.23,7.81 +2020-03-01 10:00:00,44.11,77.38,35.12,30.88,14.19,0.82,31.78,34.57,17.3,2.04,18.76,7.85 +2020-03-01 11:00:00,41.88,77.51,34.18,30.56,13.81,0.8,39.55,32.08,14.29,1.7,13.39,8.17 +2020-03-01 12:00:00,39.59,76.29,32.72,30.37,13.49,0.77,49.18,27.77,10.53,1.55,13.83,7.96 +2020-03-01 13:00:00,36.9,72.14,31.82,30.63,13.76,0.77,60.7,25.26,8.48,1.66,14.94,7.93 +2020-03-01 14:00:00,38.17,77.82,31.92,31.34,14.31,0.77,73.61,24.47,7.42,1.53,15.01,8.09 +2020-03-01 15:00:00,38.98,81.68,32.87,31.48,14.27,0.74,82.89,24.85,7.63,1.75,17.37,8.28 +2020-03-01 16:00:00,44.41,94.19,33.24,31.48,14.11,0.73,89.57,25.1,7.96,1.78,20.5,8.23 +2020-03-01 17:00:00,45.94,99.15,34.38,32.54,13.75,0.73,86.52,24.88,6.91,1.81,19.64,8.25 +2020-03-01 18:00:00,46.27,108.96,42.91,32.9,12.95,0.83,67.91,31.01,8.15,2.28,27.57,8.76 +2020-03-01 19:00:00,52.0,126.06,60.34,33.14,12.02,1.14,32.01,46.0,14.11,2.42,26.02,8.44 +2020-03-01 20:00:00,65.43,164.05,67.63,34.73,12.15,1.64,20.95,69.29,34.71,3.33,35.32,8.43 +2020-03-01 21:00:00,82.59,218.62,70.37,36.21,12.63,2.14,17.89,94.58,57.42,4.48,53.86,7.89 +2020-03-01 22:00:00,96.18,235.34,72.21,36.83,13.07,2.28,20.8,104.45,71.51,5.18,59.38,4.74 +2020-03-01 23:00:00,101.41,241.45,68.5,36.83,13.12,2.4,19.95,124.2,91.6,5.49,58.32,0.93 +2020-03-02 00:00:00,104.2,239.72,64.61,38.17,13.06,2.56,19.81,132.06,107.45,5.71,53.05,1.28 +2020-03-02 01:00:00,105.77,235.07,59.18,40.14,12.75,2.52,18.97,141.64,118.42,5.8,51.34,1.65 +2020-03-02 02:00:00,109.48,231.43,53.16,40.46,12.37,2.5,18.88,143.21,123.83,6.31,52.31,1.63 +2020-03-02 03:00:00,108.26,212.38,47.7,41.7,12.47,2.16,18.91,129.42,118.33,6.25,49.51,1.51 +2020-03-02 04:00:00,117.23,208.14,45.59,40.29,13.17,1.95,18.19,124.26,111.03,6.13,41.4,3.48 +2020-03-02 05:00:00,117.64,199.62,43.21,39.03,12.66,1.8,15.85,119.1,105.64,5.95,37.89,2.17 +2020-03-02 06:00:00,118.31,204.65,41.37,38.87,13.12,1.8,14.98,118.7,104.16,6.03,35.95,6.37 +2020-03-02 07:00:00,115.02,206.71,41.1,40.5,14.38,1.8,13.81,126.02,114.19,5.51,33.42,9.21 +2020-03-02 08:00:00,121.73,220.61,43.48,43.13,15.68,2.06,16.46,141.53,130.5,6.1,36.48,5.29 +2020-03-02 09:00:00,128.06,238.17,66.09,40.53,17.06,1.8,18.0,120.39,93.33,6.4,35.93,4.95 +2020-03-02 10:00:00,131.27,238.99,69.42,40.45,20.41,1.43,22.9,79.69,45.83,5.2,34.4,1.92 +2020-03-02 11:00:00,104.47,192.78,51.22,38.24,19.67,1.13,38.13,46.78,22.84,3.74,33.96,1.3 +2020-03-02 12:00:00,80.61,152.56,42.98,38.19,16.57,0.92,57.08,35.74,13.92,3.15,23.36,14.83 +2020-03-02 13:00:00,75.67,151.76,42.87,40.33,17.94,0.85,69.53,33.36,16.27,2.94,23.37,12.17 +2020-03-02 14:00:00,75.21,157.75,38.15,40.58,17.39,0.81,78.86,30.22,9.77,2.78,20.03,10.22 +2020-03-02 15:00:00,79.08,164.66,35.13,41.85,17.86,0.76,92.0,26.83,7.92,2.7,24.26,6.51 +2020-03-02 16:00:00,79.29,166.16,35.52,41.43,18.21,0.75,93.93,27.46,7.93,2.66,28.32,2.1 +2020-03-02 17:00:00,83.47,182.82,35.73,40.77,18.07,0.74,82.54,27.96,8.97,2.7,22.18,5.5 +2020-03-02 18:00:00,75.1,171.83,38.03,40.03,18.17,0.77,63.44,31.02,11.01,2.51,25.67,4.82 +2020-03-02 19:00:00,71.21,160.95,47.78,37.37,16.63,0.96,38.74,34.84,8.99,2.69,33.18,0.91 +2020-03-02 20:00:00,76.39,188.74,62.24,37.77,15.46,1.4,22.12,56.98,24.11,3.56,39.98,2.22 +2020-03-02 21:00:00,95.77,238.81,71.17,38.07,15.73,1.95,15.12,97.56,64.01,4.5,56.89,1.36 +2020-03-02 22:00:00,102.35,266.36,67.16,37.89,15.24,2.18,15.61,112.17,81.75,5.06,55.23,1.07 +2020-03-02 23:00:00,108.65,253.6,62.66,39.01,15.43,2.4,15.57,125.25,99.61,5.44,62.01,2.96 +2020-03-03 00:00:00,114.28,274.04,59.88,39.44,16.15,2.34,16.24,132.92,109.68,6.05,58.78,2.63 +2020-03-03 01:00:00,116.67,263.07,57.18,39.57,16.0,1.93,15.43,117.14,96.75,5.84,73.62,1.42 +2020-03-03 02:00:00,109.89,228.11,55.82,41.67,15.48,1.51,15.93,99.4,76.0,5.7,70.08,3.98 +2020-03-03 03:00:00,113.73,221.28,48.51,40.22,11.83,1.4,15.34,99.76,79.55,5.06,60.52,3.42 +2020-03-03 04:00:00,111.4,205.73,46.77,37.73,11.83,1.38,14.87,95.32,77.08,5.02,48.51,3.37 +2020-03-03 05:00:00,103.69,188.52,44.33,36.15,12.38,1.35,14.23,103.49,86.86,5.14,42.48,2.23 +2020-03-03 06:00:00,101.6,191.33,42.69,36.61,12.33,1.41,13.5,110.51,90.79,4.9,43.36,2.43 +2020-03-03 07:00:00,100.67,199.55,42.27,36.59,12.39,1.51,13.36,122.3,105.58,4.87,41.88,2.26 +2020-03-03 08:00:00,111.09,212.29,45.95,38.37,13.62,1.7,13.93,128.31,115.91,5.21,42.52,1.48 +2020-03-03 09:00:00,126.41,252.84,67.0,42.31,21.73,1.59,17.25,113.18,84.79,5.54,43.24,1.42 +2020-03-03 10:00:00,140.82,271.01,65.01,42.17,24.12,1.27,25.76,74.82,41.99,4.73,35.09,1.27 +2020-03-03 11:00:00,124.25,227.96,47.39,39.95,20.27,0.99,43.26,48.31,24.04,4.07,28.65,0.69 +2020-03-03 12:00:00,86.54,171.45,36.84,39.33,20.57,0.79,60.31,36.31,17.65,3.05,22.78,0.52 +2020-03-03 13:00:00,72.52,156.54,32.41,39.66,22.91,0.66,66.95,29.83,13.06,2.49,23.64,4.14 +2020-03-03 14:00:00,58.38,134.3,26.74,36.86,18.36,0.56,66.05,24.28,10.66,2.15,19.34,0.82 +2020-03-03 15:00:00,42.19,105.23,25.44,35.3,14.63,0.54,67.15,23.47,10.32,1.88,16.42,0.4 +2020-03-03 16:00:00,37.03,103.23,25.29,34.53,12.57,0.54,67.09,24.07,10.82,1.62,19.16,0.26 +2020-03-03 17:00:00,34.8,102.77,25.77,33.72,11.85,0.52,65.86,24.12,11.06,1.59,27.22,0.53 +2020-03-03 18:00:00,42.36,109.12,31.82,32.42,11.96,0.62,55.09,26.72,9.98,1.76,33.17,0.11 +2020-03-03 19:00:00,40.87,124.04,48.36,32.53,12.34,0.86,33.5,37.48,11.74,2.31,25.6,0.94 +2020-03-03 20:00:00,48.56,151.39,59.17,31.53,13.8,1.15,19.38,49.88,17.95,3.08,31.35,0.52 +2020-03-03 21:00:00,63.73,194.72,61.66,32.14,14.3,1.4,18.11,62.58,29.18,3.79,37.96,0.3 +2020-03-03 22:00:00,77.15,216.62,61.98,34.14,15.0,1.59,18.4,72.26,39.61,4.67,39.77,0.54 +2020-03-03 23:00:00,91.54,224.49,60.05,35.52,15.02,1.63,20.36,71.06,41.34,4.88,52.93,0.52 +2020-03-04 00:00:00,98.18,232.66,60.26,35.95,14.52,1.69,17.53,90.42,61.91,4.55,50.16,0.67 +2020-03-04 01:00:00,107.28,243.82,58.13,36.62,13.71,1.53,17.01,97.19,69.99,4.6,43.23,0.76 +2020-03-04 02:00:00,104.42,238.59,56.28,38.47,14.52,1.46,18.84,96.08,70.88,4.44,40.77,0.54 +2020-03-04 03:00:00,107.86,225.06,52.33,39.07,12.86,1.41,20.5,101.23,78.17,4.65,41.82,0.5 +2020-03-04 04:00:00,108.64,220.08,52.92,37.91,14.35,1.4,22.2,103.61,81.0,4.82,36.21,1.05 +2020-03-04 05:00:00,110.12,222.96,50.55,37.35,15.08,1.44,21.88,95.26,86.57,4.89,41.9,0.47 +2020-03-04 06:00:00,111.6,223.75,49.63,37.82,14.94,1.53,18.56,100.29,82.73,5.2,34.94,0.58 +2020-03-04 07:00:00,115.24,230.59,50.15,39.22,16.33,1.72,24.84,111.67,107.14,5.49,34.62,0.69 +2020-03-04 08:00:00,125.01,250.88,56.45,39.99,18.37,1.82,31.24,128.36,109.82,5.67,33.41,0.68 +2020-03-04 09:00:00,130.71,276.29,69.17,41.38,27.79,1.52,31.38,98.23,66.91,5.48,37.54,3.76 +2020-03-04 10:00:00,125.35,284.73,65.08,39.64,28.63,1.28,38.57,66.56,33.06,4.36,33.15,0.83 +2020-03-04 11:00:00,101.38,244.05,52.32,37.91,24.94,1.1,51.04,46.48,18.74,3.52,26.48,0.51 +2020-03-04 12:00:00,83.36,209.72,43.82,36.45,24.66,0.97,61.99,34.89,11.35,3.02,23.78,0.55 +2020-03-04 13:00:00,72.99,189.6,37.78,37.45,20.64,0.8,75.16,29.16,8.85,2.43,18.79,0.6 +2020-03-04 14:00:00,68.53,184.62,33.13,37.58,17.56,0.74,79.48,25.2,7.67,2.29,14.36,0.92 +2020-03-04 15:00:00,62.72,165.7,32.56,38.4,15.56,0.71,76.68,25.18,7.49,2.13,12.18,0.22 +2020-03-04 16:00:00,66.44,164.51,32.99,39.66,15.3,0.7,71.07,25.11,7.51,2.29,12.63,0.0 +2020-03-04 17:00:00,68.95,173.04,35.16,40.01,14.35,0.76,66.03,27.03,7.74,2.42,14.41,0.01 +2020-03-04 18:00:00,68.44,196.55,32.21,38.52,12.3,0.72,57.82,25.5,8.42,2.37,17.11,1.02 +2020-03-04 19:00:00,49.83,181.41,34.86,35.58,10.43,0.67,42.39,27.15,8.79,2.09,17.82,0.13 +2020-03-04 20:00:00,30.8,102.72,34.45,34.27,10.23,0.62,41.19,26.21,8.37,2.1,22.3,0.07 +2020-03-04 21:00:00,25.06,68.63,35.41,32.83,10.38,0.65,41.75,26.24,7.01,2.33,20.25,0.48 +2020-03-04 22:00:00,25.01,62.05,36.97,31.98,10.78,0.62,38.01,27.68,7.63,2.37,28.32,0.31 +2020-03-04 23:00:00,21.6,58.97,32.34,31.65,11.12,0.53,37.39,23.91,6.54,2.12,23.5,0.5 +2020-03-05 00:00:00,22.28,47.56,32.21,31.5,9.59,0.48,35.71,23.79,6.85,1.82,24.5,0.15 +2020-03-05 01:00:00,19.99,44.45,34.37,30.67,9.14,0.5,28.01,27.69,9.23,1.94,16.02,0.06 +2020-03-05 02:00:00,22.53,42.84,32.0,32.63,10.04,0.52,25.95,26.26,9.43,2.06,18.89,0.75 +2020-03-05 03:00:00,21.6,36.18,27.56,30.86,10.27,0.44,29.23,22.15,7.67,1.68,22.05,0.33 +2020-03-05 04:00:00,17.78,27.91,27.34,30.14,9.38,0.46,31.43,22.43,7.96,1.71,18.82,0.24 +2020-03-05 05:00:00,19.58,29.84,28.08,29.45,10.8,0.44,29.73,21.93,7.39,1.95,17.83,0.21 +2020-03-05 06:00:00,20.65,35.25,32.07,29.62,11.37,0.49,25.43,26.89,10.71,1.73,11.67,0.36 +2020-03-05 07:00:00,22.68,45.49,37.51,30.76,10.83,0.67,18.18,38.25,20.24,1.71,13.82,0.36 +2020-03-05 08:00:00,30.3,64.38,45.35,32.25,12.44,0.92,17.36,53.21,31.96,1.96,23.02,0.1 +2020-03-05 09:00:00,38.28,78.98,40.84,33.04,13.68,0.82,24.15,40.49,19.92,2.15,24.2,0.64 +2020-03-05 10:00:00,42.93,83.28,37.05,32.28,13.32,0.82,30.26,33.33,13.99,2.0,17.15,0.3 +2020-03-05 11:00:00,48.57,86.13,34.75,32.2,12.87,0.81,39.09,29.66,11.5,1.99,14.31,0.15 +2020-03-05 12:00:00,43.78,88.23,29.65,32.73,13.34,0.75,48.87,24.21,8.45,1.89,13.5,0.13 +2020-03-05 13:00:00,41.62,90.74,27.46,32.16,14.75,0.66,53.05,21.97,7.89,1.72,12.85,0.15 +2020-03-05 14:00:00,39.18,91.13,26.45,34.04,13.98,0.63,58.71,20.68,7.34,1.66,12.59,0.42 +2020-03-05 15:00:00,34.98,83.3,26.53,34.79,12.49,0.6,60.2,20.83,7.23,1.5,10.55,0.1 +2020-03-05 16:00:00,34.79,84.53,25.86,34.93,10.84,0.58,59.39,20.54,7.13,1.37,10.91,0.35 +2020-03-05 17:00:00,32.19,80.47,27.87,34.9,10.59,0.88,55.46,22.88,10.01,1.43,12.17,0.62 +2020-03-05 18:00:00,33.92,86.28,33.44,33.81,10.8,1.32,47.47,25.36,7.62,1.59,14.39,0.23 +2020-03-05 19:00:00,39.83,95.93,41.28,34.87,12.32,1.61,39.34,31.03,9.13,1.89,17.14,0.07 +2020-03-05 20:00:00,45.92,109.93,44.43,34.8,11.48,1.46,33.69,35.49,12.4,2.24,23.39,0.06 +2020-03-05 21:00:00,41.67,106.85,28.48,31.5,9.46,1.18,38.74,25.58,12.88,1.96,14.32,0.25 +2020-03-05 22:00:00,19.9,49.43,31.67,30.14,8.8,1.21,32.78,36.97,21.88,1.63,12.93,0.31 +2020-03-05 23:00:00,19.3,30.77,39.03,30.39,9.19,1.24,25.4,33.24,13.93,1.77,16.23,0.17 +2020-03-06 00:00:00,14.75,22.15,43.54,30.82,10.96,1.28,20.83,39.22,17.2,1.46,16.97,2.37 +2020-03-06 01:00:00,16.96,31.52,44.17,32.2,10.25,1.1,21.35,45.24,21.78,1.62,18.99,0.16 +2020-03-06 02:00:00,22.35,37.43,29.07,33.14,10.45,0.94,39.6,25.29,9.9,1.61,18.92,0.34 +2020-03-06 03:00:00,21.03,33.16,25.73,30.08,11.8,1.09,41.67,20.4,6.92,1.21,14.78,0.3 +2020-03-06 04:00:00,18.05,31.22,28.14,28.96,11.3,0.98,36.54,23.57,8.4,1.21,10.22,0.09 +2020-03-06 05:00:00,18.59,35.21,21.64,28.25,9.01,0.8,44.63,17.37,6.13,1.0,10.5,0.1 +2020-03-06 06:00:00,15.6,28.93,23.3,28.12,9.74,0.81,42.78,29.37,17.87,0.91,9.41,0.08 +2020-03-06 07:00:00,19.75,32.54,27.33,28.78,8.68,1.26,29.53,32.05,18.36,1.05,7.44,0.39 +2020-03-06 08:00:00,23.85,38.49,33.14,30.53,8.67,1.21,21.55,32.27,15.26,1.03,8.93,0.0 +2020-03-06 09:00:00,24.95,38.39,36.87,30.88,9.41,1.12,18.9,35.53,16.59,1.45,16.22,0.01 +2020-03-06 10:00:00,28.99,41.94,31.2,31.0,11.02,0.74,29.63,29.74,13.86,1.57,15.63,0.26 +2020-03-06 11:00:00,31.33,44.04,24.78,30.62,11.56,0.6,37.68,23.36,10.46,1.56,14.97,0.12 +2020-03-06 12:00:00,23.81,43.33,23.28,28.97,11.52,0.63,45.67,20.84,9.0,1.38,11.37,0.01 +2020-03-06 13:00:00,20.21,52.13,22.52,28.93,11.37,0.62,49.56,19.44,7.84,1.28,10.81,0.0 +2020-03-06 14:00:00,18.47,52.92,23.19,29.08,11.49,0.66,52.08,20.62,8.32,1.18,11.05,0.4 +2020-03-06 15:00:00,22.64,59.64,23.35,33.73,11.75,0.6,53.11,20.77,8.74,1.23,10.27,0.0 +2020-03-06 16:00:00,24.09,58.58,27.68,29.52,11.13,0.57,48.95,21.04,6.99,1.17,11.86,0.36 +2020-03-06 17:00:00,20.46,47.61,26.49,28.91,8.56,0.55,46.33,21.79,8.26,1.2,12.24,0.0 +2020-03-06 18:00:00,13.64,30.83,38.05,27.29,7.61,0.61,28.41,29.32,10.11,1.55,15.97,3.83 +2020-03-06 19:00:00,14.75,19.18,49.05,28.15,9.67,0.85,23.48,37.52,12.2,1.76,20.0,0.92 +2020-03-06 20:00:00,20.01,28.38,53.61,27.78,10.41,0.97,19.24,40.51,14.21,2.19,24.11,0.13 +2020-03-06 21:00:00,24.22,35.18,53.46,28.46,11.65,1.03,16.96,44.61,17.76,2.41,24.91,3.1 +2020-03-06 22:00:00,27.1,40.29,52.38,27.79,9.8,0.99,16.56,44.26,18.27,2.35,22.61,1.35 +2020-03-06 23:00:00,26.19,40.98,47.02,27.41,12.35,0.89,19.34,39.95,16.72,1.89,20.49,0.13 +2020-03-07 00:00:00,24.55,42.63,40.84,28.04,13.64,0.76,24.67,34.85,14.44,1.66,16.96,0.56 +2020-03-07 01:00:00,20.75,39.25,33.55,28.0,14.26,0.6,29.27,27.05,10.53,1.5,13.71,0.44 +2020-03-07 02:00:00,19.98,36.03,27.03,29.15,12.55,0.54,34.64,21.43,7.78,1.34,11.67,0.27 +2020-03-07 03:00:00,19.14,32.66,24.64,28.04,11.27,0.53,33.68,19.28,7.08,1.18,10.11,0.19 +2020-03-07 04:00:00,16.4,27.29,23.73,26.62,11.11,0.5,34.67,17.92,6.23,1.07,8.5,1.07 +2020-03-07 05:00:00,14.29,25.35,24.25,25.61,9.45,0.49,32.1,19.11,7.17,0.99,8.01,2.06 +2020-03-07 06:00:00,14.62,27.28,26.61,24.97,9.44,0.49,29.32,21.58,8.47,0.98,6.99,0.03 +2020-03-07 07:00:00,17.03,30.61,30.49,24.87,9.44,0.5,26.5,25.49,11.12,0.97,7.63,0.01 +2020-03-07 08:00:00,20.05,37.31,33.04,25.74,10.05,0.57,23.98,31.45,15.56,0.96,9.12,0.0 +2020-03-07 09:00:00,23.34,46.79,31.11,26.61,10.58,0.61,25.96,30.9,15.65,1.17,10.1,0.11 +2020-03-07 10:00:00,28.07,58.47,30.76,27.13,11.08,0.68,29.51,30.46,15.98,1.35,9.2,0.21 +2020-03-07 11:00:00,35.96,70.03,30.8,28.49,10.86,0.68,33.17,29.69,15.16,1.51,9.82,0.27 +2020-03-07 12:00:00,39.2,74.58,26.22,29.04,10.69,0.61,40.06,25.14,11.82,1.54,10.08,0.27 +2020-03-07 13:00:00,40.47,77.28,25.02,28.79,10.63,0.59,43.71,22.4,9.82,1.45,9.62,0.03 +2020-03-07 14:00:00,43.62,84.94,25.96,28.92,10.98,0.65,52.81,21.93,8.57,1.58,10.92,0.01 +2020-03-07 15:00:00,48.39,92.77,29.14,29.15,11.27,0.68,58.44,23.49,8.28,1.63,12.62,0.02 +2020-03-07 16:00:00,51.57,104.16,30.93,30.21,11.51,0.67,60.68,24.0,7.38,1.65,12.66,0.17 +2020-03-07 17:00:00,51.11,108.05,33.54,30.15,12.08,0.69,61.24,25.36,7.36,1.57,19.09,0.09 +2020-03-07 18:00:00,50.24,116.13,36.92,31.02,11.07,0.74,58.22,27.95,8.22,1.9,26.52,0.23 +2020-03-07 19:00:00,57.1,127.42,51.24,31.89,11.37,1.02,36.2,42.03,15.2,2.34,30.16,0.18 +2020-03-07 20:00:00,67.82,160.92,61.39,32.88,14.22,1.47,25.38,61.91,31.61,3.41,45.46,0.11 +2020-03-07 21:00:00,82.07,193.09,63.34,33.54,14.8,1.72,19.65,81.6,51.82,4.66,57.97,0.66 +2020-03-07 22:00:00,95.19,214.09,59.63,34.05,15.28,1.93,18.7,87.76,61.04,5.27,71.95,0.74 +2020-03-07 23:00:00,102.08,223.74,52.53,33.35,16.56,1.89,18.82,83.66,61.65,5.07,78.58,1.2 +2020-03-08 00:00:00,95.74,207.18,49.61,33.67,15.26,1.71,24.43,84.12,62.54,5.49,69.65,1.38 +2020-03-08 01:00:00,91.07,190.77,42.53,31.37,12.63,1.43,28.01,80.96,66.26,5.21,59.37,1.19 +2020-03-08 02:00:00,85.92,166.84,34.93,32.71,11.54,1.35,25.24,80.89,69.67,4.51,55.23,0.69 +2020-03-08 03:00:00,85.23,154.97,31.2,27.51,16.51,1.25,23.07,85.99,67.23,3.88,24.63,1.07 +2020-03-08 04:00:00,91.83,158.95,32.69,33.6,12.12,1.36,19.19,83.48,73.8,4.42,40.92,0.54 +2020-03-08 05:00:00,96.35,154.97,30.3,32.69,11.81,1.36,20.89,90.2,82.06,4.01,37.68,0.49 +2020-03-08 06:00:00,91.79,153.36,30.16,31.81,12.23,1.3,17.93,95.71,88.92,4.06,39.87,0.66 +2020-03-08 07:00:00,87.55,145.5,30.27,32.98,12.54,1.42,19.94,104.43,98.35,4.58,38.01,1.49 +2020-03-08 08:00:00,85.16,139.09,34.03,35.53,12.9,1.48,14.76,109.53,96.85,4.8,38.55,0.93 +2020-03-08 09:00:00,85.14,143.56,51.66,34.36,13.26,1.41,19.17,93.64,73.74,4.67,31.77,0.62 +2020-03-08 10:00:00,89.56,150.16,54.99,35.63,11.88,1.26,27.39,70.07,44.8,4.37,34.7,0.32 +2020-03-08 11:00:00,105.56,174.45,47.85,37.04,13.25,1.1,40.96,51.08,27.54,4.4,33.02,0.59 +2020-03-08 12:00:00,103.19,167.92,36.7,35.14,14.6,0.89,56.1,36.63,17.87,3.68,32.49,0.48 +2020-03-08 13:00:00,78.49,128.61,27.54,31.13,12.59,0.72,64.5,26.02,12.08,2.71,25.38,0.59 +2020-03-08 14:00:00,49.24,91.72,23.93,29.29,11.99,0.68,71.5,22.08,9.72,2.36,27.79,0.42 +2020-03-08 15:00:00,40.23,85.69,21.96,27.59,11.83,0.59,68.99,20.78,9.32,1.96,24.65,0.58 +2020-03-08 16:00:00,34.8,78.63,20.91,26.84,10.99,0.56,64.57,19.68,8.89,1.97,28.66,0.31 +2020-03-08 17:00:00,27.23,76.92,20.9,26.32,10.46,0.54,60.25,19.99,9.41,1.76,32.9,0.15 +2020-03-08 18:00:00,25.37,76.9,24.38,26.68,9.85,0.55,52.64,21.94,9.81,1.64,24.99,0.44 +2020-03-08 19:00:00,27.85,76.81,36.84,27.2,10.67,0.72,38.19,35.8,17.86,1.84,21.25,0.43 +2020-03-08 20:00:00,37.1,112.36,53.54,28.95,12.38,1.13,21.61,58.81,32.57,2.5,30.47,0.36 +2020-03-08 21:00:00,59.83,158.22,54.47,31.28,12.87,1.35,18.9,67.51,41.68,3.06,39.56,0.39 +2020-03-08 22:00:00,74.3,185.46,52.4,33.3,14.0,1.33,15.78,65.03,40.18,3.23,36.62,0.45 +2020-03-08 23:00:00,81.86,186.14,47.68,33.53,14.36,1.17,16.06,57.3,34.41,3.2,32.3,0.54 +2020-03-09 00:00:00,85.66,176.71,42.09,32.54,14.02,0.94,18.66,48.29,27.16,3.0,27.94,1.11 +2020-03-09 01:00:00,74.1,148.35,38.34,32.46,13.33,0.76,19.55,41.89,22.66,2.45,23.11,0.47 +2020-03-09 02:00:00,73.53,138.86,34.92,34.18,13.41,0.72,20.61,37.49,20.12,2.31,18.17,0.47 +2020-03-09 03:00:00,80.08,145.05,31.05,37.08,13.96,0.7,19.79,31.03,14.89,2.29,17.62,0.44 +2020-03-09 04:00:00,85.18,150.99,28.06,35.27,13.19,0.67,22.83,26.93,12.45,2.07,15.82,0.41 +2020-03-09 05:00:00,73.83,122.85,24.87,32.49,12.59,0.64,24.04,24.31,11.62,1.82,14.47,0.4 +2020-03-09 06:00:00,61.2,100.03,25.17,30.43,12.79,0.62,22.94,26.12,13.85,1.84,14.06,0.3 +2020-03-09 07:00:00,60.91,105.15,28.44,29.83,12.41,0.66,19.99,32.14,18.62,1.79,10.15,0.51 +2020-03-09 08:00:00,64.33,122.23,28.84,30.5,12.71,0.72,21.73,35.01,21.58,2.0,10.56,0.46 +2020-03-09 09:00:00,69.2,132.77,29.26,31.47,14.77,0.72,28.75,34.38,20.33,1.96,10.53,0.24 +2020-03-09 10:00:00,69.46,133.89,26.75,28.8,15.45,0.65,39.77,29.81,16.73,1.93,13.03,0.17 +2020-03-09 11:00:00,46.84,117.62,23.49,26.45,14.79,0.57,46.64,23.72,11.83,1.57,16.9,0.28 +2020-03-09 12:00:00,32.93,115.71,21.0,25.74,13.03,0.48,55.65,21.02,11.07,1.3,23.02,0.2 +2020-03-09 13:00:00,32.55,118.67,21.01,25.48,12.1,0.54,59.36,20.37,10.38,1.25,23.54,0.15 +2020-03-09 14:00:00,28.54,111.18,19.65,24.79,11.56,0.49,57.65,19.06,9.63,1.12,14.55,0.15 +2020-03-09 15:00:00,26.37,103.74,20.31,24.28,11.37,0.5,57.87,20.03,10.1,1.09,12.62,0.45 +2020-03-09 16:00:00,28.35,101.25,20.44,24.77,11.08,0.48,61.68,19.21,9.93,1.12,12.28,0.17 +2020-03-09 17:00:00,28.48,100.87,21.58,24.89,11.62,0.49,57.24,20.96,10.18,1.01,13.13,0.04 +2020-03-09 18:00:00,26.44,99.44,24.89,23.78,10.79,0.52,51.75,23.22,10.99,1.09,8.67,0.21 +2020-03-09 19:00:00,27.69,107.65,36.19,23.81,11.38,0.66,41.53,33.53,15.25,1.23,10.14,0.11 +2020-03-09 20:00:00,35.53,124.09,50.65,25.69,12.45,0.95,25.14,51.63,26.54,1.94,18.07,0.14 +2020-03-09 21:00:00,56.05,161.67,58.14,29.36,15.31,1.23,15.05,63.02,35.14,2.61,24.81,0.21 +2020-03-09 22:00:00,91.34,209.75,60.73,33.14,16.92,1.57,19.56,73.35,45.32,3.38,31.57,0.49 +2020-03-09 23:00:00,134.42,261.37,59.18,35.84,18.92,1.8,21.13,78.4,46.37,3.66,34.82,0.3 +2020-03-10 00:00:00,162.83,293.88,55.83,38.68,19.24,1.89,21.81,77.82,51.67,4.01,33.26,0.22 +2020-03-10 01:00:00,188.05,317.06,52.46,40.43,18.59,1.65,25.97,68.4,40.79,4.47,31.21,0.36 +2020-03-10 02:00:00,194.37,302.93,45.35,41.05,17.26,1.43,26.77,53.04,30.46,4.53,26.31,0.45 +2020-03-10 03:00:00,164.25,262.09,35.64,36.52,14.37,1.15,19.35,39.4,20.25,3.71,22.04,0.42 +2020-03-10 04:00:00,131.61,217.74,33.66,35.3,13.57,1.05,18.25,37.16,19.76,3.11,19.88,1.61 +2020-03-10 05:00:00,108.54,185.5,29.45,33.77,12.74,0.93,19.92,31.46,16.63,2.79,18.46,0.25 +2020-03-10 06:00:00,95.67,167.64,27.36,32.89,12.55,0.88,20.34,28.2,14.01,2.56,18.58,0.59 +2020-03-10 07:00:00,92.29,163.89,27.25,31.89,15.58,0.86,19.06,31.2,17.84,2.55,20.86,1.07 +2020-03-10 08:00:00,90.27,164.54,28.27,32.23,17.95,0.87,24.34,32.13,18.09,3.03,21.73,0.44 +2020-03-10 09:00:00,84.04,158.84,26.96,30.91,32.64,0.71,37.14,25.05,11.23,2.56,19.05,0.28 +2020-03-10 10:00:00,69.73,130.88,20.93,28.67,24.65,0.63,56.08,19.16,8.5,2.01,11.67,0.29 +2020-03-10 11:00:00,51.3,109.46,17.47,27.28,18.7,0.56,63.94,15.45,6.71,1.74,9.44,0.39 +2020-03-10 12:00:00,42.35,100.84,15.88,26.46,16.7,0.51,73.97,13.88,5.95,1.56,7.3,0.26 +2020-03-10 13:00:00,40.54,100.68,16.43,27.01,15.85,0.5,84.73,13.84,5.4,1.42,6.55,0.23 +2020-03-10 14:00:00,45.34,108.32,18.08,27.66,16.91,0.53,93.91,14.82,5.38,1.41,6.82,0.21 +2020-03-10 15:00:00,49.99,113.65,18.14,27.89,17.7,0.56,98.27,14.31,5.01,1.46,6.63,1.45 +2020-03-10 16:00:00,51.2,116.97,20.13,25.82,18.68,0.55,89.04,15.83,5.79,1.48,6.76,0.46 +2020-03-10 17:00:00,50.35,114.24,21.35,27.15,18.28,0.55,89.09,16.45,5.95,1.39,6.98,0.34 +2020-03-10 18:00:00,47.33,114.1,25.11,27.76,18.34,0.57,72.51,18.69,6.24,1.38,8.42,0.23 +2020-03-10 19:00:00,46.47,118.23,30.89,28.15,17.39,0.61,58.07,23.51,7.91,1.52,11.41,0.15 +2020-03-10 20:00:00,49.09,127.1,37.8,28.37,15.57,0.74,40.73,27.52,7.93,1.71,14.6,0.13 +2020-03-10 21:00:00,56.41,136.58,39.86,28.43,14.19,0.8,34.79,30.17,9.57,1.93,12.63,0.0 +2020-03-10 22:00:00,57.63,124.23,40.24,29.87,12.88,0.82,29.84,31.4,10.91,1.97,12.21,0.13 +2020-03-10 23:00:00,54.7,112.49,40.85,29.68,12.71,0.9,25.92,34.77,14.95,2.19,21.12,0.02 +2020-03-11 00:00:00,54.2,109.87,40.68,29.65,12.45,0.94,23.56,35.74,16.01,2.27,17.99,0.18 +2020-03-11 01:00:00,58.08,110.79,39.08,30.53,13.7,0.92,18.52,36.27,17.0,2.8,22.81,0.27 +2020-03-11 02:00:00,64.73,119.9,35.92,32.45,12.76,0.9,22.32,34.18,16.35,2.65,19.93,0.13 +2020-03-11 03:00:00,65.36,123.61,32.25,32.82,15.61,0.83,26.83,28.72,12.52,3.01,21.58,0.07 +2020-03-11 04:00:00,68.68,128.1,31.85,31.58,13.97,0.81,26.34,27.54,11.65,2.88,20.1,0.15 +2020-03-11 05:00:00,68.73,119.19,31.52,31.08,12.17,0.79,21.36,28.0,12.39,2.79,22.08,0.39 +2020-03-11 06:00:00,66.02,107.98,29.63,31.06,12.62,0.77,22.58,25.87,11.52,2.78,21.32,3.46 +2020-03-11 07:00:00,63.35,102.37,31.94,30.44,13.25,0.75,23.6,27.68,12.69,2.37,13.31,0.23 +2020-03-11 08:00:00,58.99,93.36,38.1,30.58,14.34,0.84,28.08,33.04,14.41,2.14,10.75,0.23 +2020-03-11 09:00:00,60.09,98.41,35.74,31.94,15.67,0.85,32.26,30.3,12.8,2.1,10.87,0.45 +2020-03-11 10:00:00,63.79,114.1,31.73,31.79,17.21,0.83,44.22,26.59,10.52,2.1,9.49,1.63 +2020-03-11 11:00:00,58.21,117.07,26.38,32.35,16.16,0.76,55.78,21.71,8.02,1.8,8.41,0.13 +2020-03-11 12:00:00,52.73,119.59,22.93,31.74,14.99,0.75,65.01,19.12,7.14,1.65,7.73,0.15 +2020-03-11 13:00:00,54.2,118.59,22.41,31.15,13.72,0.7,72.01,18.34,6.71,1.47,6.7,0.2 +2020-03-11 14:00:00,50.6,112.97,21.06,30.8,14.02,0.68,69.6,16.95,6.08,1.41,6.6,0.19 +2020-03-11 15:00:00,42.72,108.36,20.31,29.8,14.51,0.66,67.69,16.56,6.63,1.24,6.04,0.24 +2020-03-11 16:00:00,45.37,111.69,21.6,31.5,13.32,0.62,64.94,18.02,7.03,1.22,6.19,0.1 +2020-03-11 17:00:00,45.77,110.98,22.0,32.77,12.72,0.65,62.66,18.18,7.02,1.28,6.59,0.11 +2020-03-11 18:00:00,39.13,105.34,25.37,34.25,13.02,0.63,57.78,19.9,7.09,1.19,6.7,0.01 +2020-03-11 19:00:00,42.34,108.19,31.34,35.14,12.84,0.69,46.39,23.38,7.34,1.34,7.64,0.08 +2020-03-11 20:00:00,45.41,114.11,35.99,39.04,13.47,0.78,40.61,27.08,8.55,1.7,10.31,0.0 +2020-03-11 21:00:00,50.98,123.51,31.48,39.19,13.96,0.75,43.15,23.58,7.4,1.64,10.19,0.29 +2020-03-11 22:00:00,52.61,118.32,27.37,38.91,13.39,0.69,43.42,21.17,7.34,1.62,7.99,0.06 +2020-03-11 23:00:00,52.52,105.18,27.47,38.45,11.89,0.7,38.03,21.83,8.19,1.51,7.66,0.0 +2020-03-12 00:00:00,52.05,88.71,28.72,38.82,11.58,0.68,32.97,23.23,8.59,1.39,10.29,0.01 +2020-03-12 01:00:00,56.28,90.96,25.96,39.9,10.96,0.61,30.05,22.25,9.18,1.54,9.6,0.5 +2020-03-12 02:00:00,56.46,100.7,24.69,41.07,10.76,0.6,28.42,21.23,9.22,1.59,9.96,0.0 +2020-03-12 03:00:00,50.38,130.62,23.08,37.88,10.92,0.55,33.68,21.07,9.54,1.2,8.7,0.2 +2020-03-12 04:00:00,44.87,173.07,25.44,36.19,11.47,0.57,30.62,24.31,11.36,1.36,9.63,0.09 +2020-03-12 05:00:00,48.67,188.21,30.15,34.24,11.38,0.57,24.83,28.84,13.89,1.57,12.62,0.1 +2020-03-12 06:00:00,51.09,183.92,34.78,34.82,11.59,0.64,21.09,36.36,19.68,1.8,17.26,0.11 +2020-03-12 07:00:00,55.47,159.53,36.61,35.97,12.0,0.81,16.93,48.51,32.99,1.82,19.16,0.06 +2020-03-12 08:00:00,58.79,135.53,35.03,37.06,11.53,0.94,18.23,42.86,27.53,2.04,16.69,0.07 +2020-03-12 09:00:00,68.88,126.75,35.24,38.75,13.64,0.98,22.64,38.64,22.6,2.26,15.69,0.11 +2020-03-12 10:00:00,87.43,156.85,34.7,40.64,17.54,1.08,28.02,34.81,17.97,2.42,17.34,0.38 +2020-03-12 11:00:00,98.57,172.3,33.2,42.32,17.74,1.05,39.09,30.64,14.19,2.45,18.22,0.02 +2020-03-12 12:00:00,96.82,180.23,34.43,40.93,18.06,0.95,51.61,28.58,11.72,2.51,20.56,0.35 +2020-03-12 13:00:00,82.68,176.09,30.91,37.81,15.88,0.77,59.8,27.52,11.04,2.13,12.17,0.07 +2020-03-12 14:00:00,52.74,155.64,24.59,32.46,12.78,0.63,60.54,22.27,8.99,1.76,9.81,0.0 +2020-03-12 15:00:00,39.88,135.84,25.85,30.08,12.89,0.58,58.98,24.28,11.16,1.42,9.4,0.13 +2020-03-12 16:00:00,34.37,126.57,25.0,28.62,11.13,0.52,55.63,23.92,11.24,1.21,8.72,0.2 +2020-03-12 17:00:00,30.02,121.18,26.77,27.88,10.05,0.57,54.05,25.47,11.77,1.55,8.04,0.02 +2020-03-12 18:00:00,27.35,113.75,30.51,27.48,10.17,0.65,51.2,26.53,10.66,1.07,10.1,0.05 +2020-03-12 19:00:00,28.51,121.34,49.63,28.21,10.89,0.92,32.17,38.73,12.55,1.48,14.1,0.06 +2020-03-12 20:00:00,36.62,159.75,65.26,29.92,12.86,1.45,18.93,67.09,35.27,2.29,33.32,1.37 +2020-03-12 21:00:00,52.3,207.01,69.18,35.27,17.82,2.07,16.13,93.85,63.16,4.54,50.85,0.07 +2020-03-12 22:00:00,73.58,254.25,68.33,36.23,20.51,2.25,17.1,103.7,74.0,6.26,68.53,7.56 +2020-03-12 23:00:00,82.39,265.52,63.81,34.94,24.27,2.1,19.84,94.96,67.52,6.28,61.72,5.26 +2020-03-13 00:00:00,89.14,253.69,58.24,34.76,24.24,1.69,23.06,80.89,54.56,5.63,49.54,14.29 +2020-03-13 01:00:00,90.92,232.3,53.29,34.7,20.75,1.25,22.89,66.22,40.79,4.35,40.07,9.98 +2020-03-13 02:00:00,83.43,203.58,48.81,35.63,15.23,1.08,18.71,56.99,33.17,3.45,32.05,7.1 +2020-03-13 03:00:00,74.91,179.69,45.57,34.59,11.76,1.04,17.91,59.07,37.81,3.19,27.82,16.11 +2020-03-13 04:00:00,71.9,173.29,42.19,33.68,11.87,1.02,16.91,65.8,47.92,3.04,28.03,11.64 +2020-03-13 05:00:00,71.12,166.44,39.93,32.95,11.67,1.02,16.87,74.21,55.67,2.99,32.99,0.73 +2020-03-13 06:00:00,73.77,171.91,39.79,34.43,11.82,1.03,16.37,83.36,63.51,3.2,32.43,1.02 +2020-03-13 07:00:00,80.85,188.2,42.97,34.91,14.2,1.01,14.87,85.78,70.57,3.26,28.6,0.58 +2020-03-13 08:00:00,88.83,201.89,43.17,36.26,17.72,0.98,18.43,77.96,61.64,3.11,22.15,0.44 +2020-03-13 09:00:00,100.96,222.06,42.3,35.83,21.98,0.86,23.83,58.29,39.04,2.76,19.54,1.29 +2020-03-13 10:00:00,98.78,226.9,40.69,35.35,20.25,0.83,32.9,49.57,29.84,2.73,16.28,0.52 +2020-03-13 11:00:00,82.5,205.27,37.12,31.99,17.66,0.68,47.71,37.87,19.42,2.35,16.4,0.66 +2020-03-13 12:00:00,71.64,202.72,35.87,29.7,16.05,0.69,57.17,37.01,18.19,2.02,17.1,0.27 +2020-03-13 13:00:00,55.56,197.3,31.65,27.47,14.38,0.62,67.74,29.58,13.31,1.83,11.71,0.07 +2020-03-13 14:00:00,49.64,207.93,30.23,25.53,13.79,0.59,73.38,27.33,11.73,1.66,10.56,5.38 +2020-03-13 15:00:00,51.94,228.85,27.96,24.88,14.39,0.57,78.05,25.09,10.63,1.56,11.65,5.99 +2020-03-13 16:00:00,54.95,259.32,28.32,25.75,16.09,0.6,75.25,25.61,10.85,1.49,12.17,4.92 +2020-03-13 17:00:00,60.72,304.0,29.66,26.79,14.75,0.61,69.26,27.55,12.59,1.64,13.95,3.63 +2020-03-13 18:00:00,60.78,298.41,32.54,28.1,14.32,0.63,57.93,26.68,9.73,1.74,17.3,0.34 +2020-03-13 19:00:00,56.64,274.34,40.48,28.87,16.11,0.75,43.92,29.51,7.81,1.98,22.46,0.31 +2020-03-13 20:00:00,52.57,216.21,48.13,30.31,17.4,0.9,33.56,36.79,10.69,2.44,29.66,0.14 +2020-03-13 21:00:00,47.65,154.34,47.57,30.05,12.45,0.9,24.17,38.8,13.04,2.52,33.1,0.5 +2020-03-13 22:00:00,42.84,134.04,45.16,29.95,10.94,0.87,25.72,39.34,15.14,2.23,30.12,0.43 +2020-03-13 23:00:00,37.31,113.83,41.07,30.19,10.22,0.78,21.55,36.79,15.85,1.87,29.79,0.35 +2020-03-14 00:00:00,32.71,90.12,38.32,30.77,11.09,0.73,22.77,35.04,15.04,1.69,14.58,0.33 +2020-03-14 01:00:00,31.31,76.54,34.65,31.63,11.8,0.66,23.06,30.49,12.1,1.74,15.17,0.42 +2020-03-14 02:00:00,33.12,72.19,29.15,33.84,12.46,0.62,29.39,24.36,9.09,1.74,12.92,0.19 +2020-03-14 03:00:00,31.7,61.33,26.92,33.51,13.65,0.62,25.0,22.53,8.69,1.55,12.22,0.26 +2020-03-14 04:00:00,30.03,54.0,27.03,32.17,12.9,0.58,25.57,23.21,9.43,1.69,14.41,0.27 +2020-03-14 05:00:00,29.72,57.8,25.76,31.27,11.23,0.58,22.85,23.31,10.34,1.75,14.1,0.22 +2020-03-14 06:00:00,30.23,56.74,25.78,30.5,10.02,0.6,21.08,23.54,10.47,1.62,10.25,0.14 +2020-03-14 07:00:00,29.26,50.58,29.36,30.4,9.24,0.64,21.08,28.86,14.17,1.85,15.6,0.0 +2020-03-14 08:00:00,30.48,54.99,31.75,31.07,9.88,0.7,22.03,33.28,17.44,1.86,13.9,1.3 +2020-03-14 09:00:00,34.64,78.3,32.22,31.85,12.27,0.73,24.11,34.0,18.48,1.84,11.6,0.21 +2020-03-14 10:00:00,34.39,73.06,28.74,32.81,15.03,0.75,31.38,28.41,14.39,1.62,11.74,2.67 +2020-03-14 11:00:00,36.8,76.56,27.54,32.86,15.03,0.74,32.7,24.79,10.78,1.67,13.96,0.0 +2020-03-14 12:00:00,38.83,82.92,24.55,31.69,15.66,0.69,40.15,21.53,8.89,1.69,15.72,0.06 +2020-03-14 13:00:00,37.48,84.8,25.73,37.51,12.69,0.63,45.72,21.75,8.22,1.72,15.62,0.05 +2020-03-14 14:00:00,37.27,92.98,27.38,37.18,10.52,0.61,47.35,22.33,8.51,1.54,14.06,0.08 +2020-03-14 15:00:00,38.26,97.86,27.67,35.33,9.52,0.61,46.21,21.86,7.66,1.75,14.85,0.43 +2020-03-14 16:00:00,36.74,91.65,31.99,35.51,9.07,0.62,45.0,29.0,10.03,1.78,17.12,0.02 +2020-03-14 17:00:00,35.79,77.38,42.57,35.61,9.64,0.83,38.1,37.35,12.98,2.09,20.03,0.16 +2020-03-14 18:00:00,43.5,92.74,47.22,37.13,9.86,0.84,32.19,41.27,23.47,2.16,22.14,1.47 +2020-03-14 19:00:00,52.46,119.35,44.77,36.99,10.44,0.9,25.99,40.47,15.32,2.42,23.16,1.67 +2020-03-14 20:00:00,55.04,129.11,45.91,37.11,13.03,0.98,19.81,40.22,14.7,2.6,20.29,0.18 +2020-03-14 21:00:00,59.77,124.0,51.87,38.14,10.78,1.16,16.51,55.92,26.77,2.91,35.78,0.45 +2020-03-14 22:00:00,62.66,126.72,53.57,39.45,11.25,1.26,20.76,66.34,37.44,3.26,37.25,0.41 +2020-03-14 23:00:00,63.66,124.44,49.66,38.7,11.14,1.08,21.27,55.0,27.73,3.14,34.93,0.38 +2020-03-15 00:00:00,53.1,101.71,41.65,36.11,10.4,0.87,19.58,38.82,14.77,2.51,26.88,5.38 +2020-03-15 01:00:00,46.02,84.53,44.1,35.92,12.27,0.86,16.96,46.16,22.99,2.27,17.45,5.01 +2020-03-15 02:00:00,46.81,90.33,46.61,38.47,11.53,0.9,12.49,57.87,34.02,2.32,16.42,0.34 +2020-03-15 03:00:00,47.8,98.8,45.49,28.99,9.69,0.96,16.58,62.83,38.75,2.32,18.08,0.34 +2020-03-15 04:00:00,46.93,101.26,44.63,28.11,9.81,1.01,12.2,63.7,48.82,2.35,21.63,0.34 +2020-03-15 05:00:00,52.36,105.67,42.31,28.88,10.3,1.0,11.1,63.38,43.27,2.67,21.17,0.34 +2020-03-15 06:00:00,66.4,124.11,42.12,30.42,11.76,0.98,10.71,69.41,51.7,2.97,22.8,0.25 +2020-03-15 07:00:00,82.0,151.34,42.46,31.08,11.9,1.09,12.34,71.11,72.0,3.16,23.85,0.2 +2020-03-15 08:00:00,88.15,168.79,44.84,32.83,15.07,1.27,14.82,91.71,78.1,3.74,31.25,0.2 +2020-03-15 09:00:00,96.83,180.68,56.15,41.78,16.63,1.25,19.96,80.84,53.22,3.65,34.16,0.15 +2020-03-15 10:00:00,100.37,175.27,47.73,34.47,17.89,1.01,30.64,53.14,26.85,3.26,27.4,3.21 +2020-03-15 11:00:00,91.9,155.02,41.03,35.03,20.53,0.94,38.68,41.01,17.69,2.91,32.92,12.52 +2020-03-15 12:00:00,90.15,149.41,36.97,32.37,19.98,0.81,56.89,33.88,12.29,2.49,29.76,1.81 +2020-03-15 13:00:00,63.6,115.23,32.0,31.24,17.6,0.72,69.26,27.88,9.42,2.04,24.1,0.44 +2020-03-15 14:00:00,51.27,96.15,27.78,29.74,15.35,0.67,75.6,26.06,11.2,1.8,13.96,0.36 +2020-03-15 15:00:00,42.26,90.82,22.91,27.1,13.36,0.64,80.78,18.9,5.89,1.71,17.04,0.32 +2020-03-15 16:00:00,38.19,92.19,23.14,26.31,12.02,0.6,83.91,19.09,6.23,1.49,16.96,0.07 +2020-03-15 17:00:00,34.13,87.04,23.49,25.86,12.21,0.62,77.97,19.12,6.02,1.54,16.4,0.14 +2020-03-15 18:00:00,34.2,86.08,28.4,25.79,11.92,0.63,68.93,21.81,6.37,1.37,24.75,0.18 +2020-03-15 19:00:00,37.61,103.51,46.34,26.7,12.25,0.83,42.66,35.39,9.8,1.76,31.02,0.15 +2020-03-15 20:00:00,48.7,142.17,55.44,28.21,14.27,1.04,36.82,45.68,14.44,2.44,23.98,0.37 +2020-03-15 21:00:00,62.98,160.33,51.75,30.37,15.5,1.02,35.25,48.7,19.69,2.77,23.1,0.35 +2020-03-15 22:00:00,71.1,165.9,49.61,30.24,15.92,0.97,26.62,41.56,13.23,2.51,26.54,0.31 +2020-03-15 23:00:00,70.83,155.34,49.18,30.12,15.87,0.98,23.35,42.52,15.13,2.35,20.0,0.14 +2020-03-16 00:00:00,72.62,154.92,48.25,30.19,15.35,0.9,21.82,43.64,16.36,2.29,18.22,0.38 +2020-03-16 01:00:00,75.28,149.93,44.55,31.15,13.43,0.84,22.82,41.53,15.79,2.12,15.99,0.53 +2020-03-16 02:00:00,75.77,144.48,39.87,32.02,13.17,0.77,24.86,39.1,15.41,1.91,15.43,0.25 +2020-03-16 03:00:00,73.74,141.01,36.29,31.65,13.03,0.72,23.67,34.8,14.13,2.06,20.54,0.39 +2020-03-16 04:00:00,68.14,133.09,39.47,30.35,13.87,0.7,21.51,38.69,16.16,1.89,17.72,0.31 +2020-03-16 05:00:00,66.3,127.68,38.78,30.28,14.23,0.76,19.12,36.48,14.15,1.78,14.5,0.4 +2020-03-16 06:00:00,69.14,128.06,39.0,31.2,13.79,0.71,17.69,39.0,16.36,1.79,13.63,0.85 +2020-03-16 07:00:00,78.71,148.06,43.11,32.95,14.0,0.76,16.02,45.19,21.34,2.01,12.68,0.17 +2020-03-16 08:00:00,89.62,179.78,45.05,33.86,16.0,0.85,23.43,50.99,27.03,2.3,13.09,0.32 +2020-03-16 09:00:00,100.34,195.97,43.46,32.17,18.88,0.82,29.12,46.08,21.62,2.26,12.66,0.51 +2020-03-16 10:00:00,85.99,170.59,35.72,30.5,19.13,0.74,42.67,36.14,15.46,1.99,12.02,0.46 +2020-03-16 11:00:00,63.07,142.9,29.45,28.67,17.13,0.67,56.26,28.27,10.65,1.74,14.17,0.19 +2020-03-16 12:00:00,50.15,129.9,29.41,29.32,15.12,0.72,62.94,28.29,11.75,2.21,16.19,0.13 +2020-03-16 13:00:00,42.89,128.41,27.45,29.17,14.15,0.66,71.03,24.95,9.67,1.8,17.85,0.71 +2020-03-16 14:00:00,38.49,118.84,25.8,29.1,14.31,0.63,77.5,23.95,10.3,1.93,19.03,0.63 +2020-03-16 15:00:00,35.04,108.73,26.0,29.28,13.79,0.63,78.59,23.59,8.87,1.64,16.94,0.3 +2020-03-16 16:00:00,36.57,106.42,24.31,29.71,12.89,0.6,72.93,23.03,10.3,1.63,21.24,0.0 +2020-03-16 17:00:00,34.66,95.7,25.22,29.94,13.21,0.6,70.55,23.03,9.49,1.56,25.06,3.6 +2020-03-16 18:00:00,34.81,94.36,30.46,32.21,12.62,0.68,61.21,26.61,10.2,1.75,18.21,4.43 +2020-03-16 19:00:00,33.08,106.05,51.71,30.94,12.66,0.98,37.44,49.99,23.48,2.21,18.71,0.29 +2020-03-16 20:00:00,39.42,146.22,69.63,29.75,13.26,1.47,19.69,75.19,38.93,3.21,31.8,0.18 +2020-03-16 21:00:00,55.38,190.13,70.78,30.94,15.51,1.79,16.57,99.13,63.44,4.31,37.84,4.05 +2020-03-16 22:00:00,72.83,203.71,68.34,33.97,17.13,1.86,17.0,95.51,59.17,4.23,43.14,8.03 +2020-03-16 23:00:00,86.66,220.02,64.47,36.26,18.66,1.6,16.75,85.7,52.79,4.3,39.51,3.6 +2020-03-17 00:00:00,97.57,218.56,60.15,37.39,18.52,1.33,19.35,74.19,44.47,4.01,33.66,7.29 +2020-03-17 01:00:00,104.96,212.5,54.49,37.02,15.83,1.11,21.41,65.47,37.09,3.46,28.14,0.59 +2020-03-17 02:00:00,98.8,191.48,50.03,38.28,14.29,1.02,24.54,56.15,29.22,2.99,22.96,1.04 +2020-03-17 03:00:00,90.68,172.82,44.92,35.76,13.41,0.91,24.14,49.56,24.49,2.87,20.59,4.24 +2020-03-17 04:00:00,86.47,157.41,42.36,34.48,13.47,0.86,24.25,45.11,21.43,2.66,19.55,0.26 +2020-03-17 05:00:00,82.66,150.71,41.84,33.9,12.84,0.84,23.41,44.73,21.8,2.5,17.87,0.49 +2020-03-17 06:00:00,82.92,154.17,42.16,34.63,13.44,0.8,22.4,46.95,23.35,2.25,16.63,0.56 +2020-03-17 07:00:00,89.14,174.32,44.52,36.04,13.53,0.87,21.55,60.03,36.88,2.24,13.76,0.65 +2020-03-17 08:00:00,104.58,205.22,46.43,38.03,16.92,1.0,24.21,59.44,36.66,2.66,14.05,4.63 +2020-03-17 09:00:00,111.65,215.41,43.7,36.5,19.56,0.98,35.18,50.95,28.31,2.6,13.01,1.3 +2020-03-17 10:00:00,93.48,195.75,37.49,34.73,18.52,0.84,54.28,40.71,19.61,2.15,12.61,4.81 +2020-03-17 11:00:00,64.02,161.46,29.5,30.32,17.03,0.75,65.34,28.56,12.3,1.85,12.89,0.89 +2020-03-17 12:00:00,49.22,138.16,26.06,29.52,15.8,0.69,69.38,26.23,14.07,1.93,17.61,5.14 +2020-03-17 13:00:00,39.77,116.88,25.53,28.97,14.75,0.68,69.79,23.75,9.87,1.75,13.09,9.37 +2020-03-17 14:00:00,36.3,106.58,23.32,27.25,13.61,0.73,72.76,21.4,8.7,1.72,12.5,7.5 +2020-03-17 15:00:00,34.05,97.69,23.97,26.73,12.82,0.66,72.64,23.18,10.59,1.69,11.93,3.36 +2020-03-17 16:00:00,34.55,101.25,23.32,26.29,12.22,0.65,72.47,22.08,9.6,1.53,12.71,3.13 +2020-03-17 17:00:00,36.35,99.87,25.74,27.85,12.13,0.69,71.07,24.36,10.98,1.76,12.54,0.95 +2020-03-17 18:00:00,34.12,96.64,28.81,26.63,12.12,0.72,63.39,24.99,9.39,1.75,14.63,6.81 +2020-03-17 19:00:00,34.66,105.68,47.71,27.04,12.74,0.92,45.67,42.12,16.44,2.48,19.2,1.44 +2020-03-17 20:00:00,43.54,128.28,65.61,29.03,14.29,1.26,23.52,59.85,24.67,3.41,28.78,0.26 +2020-03-17 21:00:00,58.97,182.9,72.35,30.81,15.25,1.68,19.05,84.44,47.14,4.09,38.5,0.46 +2020-03-17 22:00:00,76.99,226.95,73.11,33.82,19.32,1.96,16.53,94.18,57.52,4.36,45.67,4.04 +2020-03-17 23:00:00,87.26,232.98,70.8,34.5,19.01,2.04,17.76,104.46,70.67,4.97,49.25,2.46 +2020-03-18 00:00:00,93.46,234.36,67.72,36.77,17.86,1.96,19.27,110.4,78.21,5.15,48.01,20.27 +2020-03-18 01:00:00,101.93,235.01,61.31,37.43,16.79,1.66,23.36,101.83,72.52,5.09,48.98,17.61 +2020-03-18 02:00:00,103.22,219.61,57.29,38.78,16.96,1.29,28.61,82.95,55.07,4.75,51.48,0.36 +2020-03-18 03:00:00,95.67,191.16,53.44,36.53,14.38,1.03,25.78,64.74,35.06,4.6,44.18,0.98 +2020-03-18 04:00:00,87.22,165.39,50.51,36.95,14.04,0.97,24.16,57.81,29.44,4.17,34.6,1.16 +2020-03-18 05:00:00,79.54,154.31,46.94,34.58,16.23,0.89,24.82,49.73,24.45,3.34,30.6,0.63 +2020-03-18 06:00:00,76.43,145.27,45.32,33.76,15.57,0.84,25.44,50.56,25.71,3.15,28.03,3.14 +2020-03-18 07:00:00,75.71,146.48,46.19,34.17,14.57,0.87,24.49,54.07,29.24,3.03,20.48,0.6 +2020-03-18 08:00:00,81.38,166.13,47.38,35.93,16.22,0.97,28.92,53.53,28.54,2.8,18.04,0.67 +2020-03-18 09:00:00,89.69,188.05,44.62,36.27,18.26,1.01,37.21,45.96,22.03,2.85,17.27,0.37 +2020-03-18 10:00:00,88.1,197.71,40.43,33.65,17.67,0.93,51.23,40.97,17.96,2.71,16.29,0.71 +2020-03-18 11:00:00,70.31,166.36,31.8,32.44,16.18,0.91,65.89,29.7,11.94,2.44,21.08,0.79 +2020-03-18 12:00:00,58.79,143.68,28.77,31.22,15.42,0.9,75.44,25.89,10.1,2.37,19.34,0.54 +2020-03-18 13:00:00,48.18,123.08,26.13,29.71,14.25,0.79,72.07,23.8,9.48,1.89,16.26,0.55 +2020-03-18 14:00:00,41.7,111.24,24.1,29.32,13.28,0.72,74.85,22.06,8.99,1.77,20.14,0.46 +2020-03-18 15:00:00,36.7,110.64,24.39,29.19,11.86,0.6,77.01,21.98,8.87,1.58,20.75,0.42 +2020-03-18 16:00:00,38.67,106.65,25.23,29.92,12.65,0.61,76.42,22.06,9.05,1.65,15.24,0.34 +2020-03-18 17:00:00,39.79,106.96,26.94,31.77,11.35,0.69,70.72,27.77,15.09,1.45,13.09,0.44 +2020-03-18 18:00:00,36.43,104.38,32.96,29.55,11.69,0.72,61.56,29.46,12.1,1.44,13.97,0.08 +2020-03-18 19:00:00,39.89,117.82,51.79,28.57,12.08,0.92,39.57,45.79,18.48,2.01,20.8,0.37 +2020-03-18 20:00:00,47.19,152.4,68.14,29.3,13.53,1.3,20.96,68.01,32.31,3.03,35.43,0.2 +2020-03-18 21:00:00,60.58,181.99,67.64,30.74,16.14,1.49,17.36,70.89,34.73,3.88,39.6,0.81 +2020-03-18 22:00:00,75.02,204.21,66.52,32.44,15.89,1.79,18.17,84.53,50.8,3.98,53.32,0.67 +2020-03-18 23:00:00,88.64,228.61,65.13,32.7,15.41,1.85,18.27,94.95,62.69,4.06,46.59,0.93 +2020-03-19 00:00:00,90.8,230.8,65.45,34.76,14.63,1.91,20.59,104.44,78.38,4.15,50.71,4.66 +2020-03-19 01:00:00,88.45,224.82,65.61,34.17,14.31,1.7,17.32,116.41,90.19,4.21,54.16,8.99 +2020-03-19 02:00:00,87.17,209.84,59.45,36.4,14.19,1.59,16.36,110.42,85.0,4.39,44.15,1.86 +2020-03-19 03:00:00,86.49,196.11,55.35,35.68,13.69,1.41,15.66,105.09,83.18,4.54,47.14,1.48 +2020-03-19 04:00:00,89.03,184.6,53.25,36.04,14.21,1.34,16.2,100.74,79.33,4.27,44.56,0.9 +2020-03-19 05:00:00,93.25,182.13,50.1,37.13,13.05,1.3,16.24,90.9,70.22,4.57,39.69,1.0 +2020-03-19 06:00:00,102.6,198.17,49.07,40.18,13.83,1.31,19.37,93.95,73.37,4.35,35.78,1.23 +2020-03-19 07:00:00,131.66,252.46,48.34,44.28,16.97,1.27,23.12,88.69,68.06,4.31,36.18,0.61 +2020-03-19 08:00:00,157.89,290.12,50.96,48.85,24.67,1.33,23.72,81.06,58.84,4.24,33.02,1.08 +2020-03-19 09:00:00,184.68,323.25,52.68,48.76,31.16,1.18,31.05,65.32,39.27,4.14,24.46,1.02 +2020-03-19 10:00:00,161.79,283.58,42.59,40.66,25.38,0.94,48.95,45.39,22.99,3.44,18.4,0.96 +2020-03-19 11:00:00,99.72,200.2,35.48,37.16,21.54,0.87,63.2,35.52,16.56,2.82,16.24,1.91 +2020-03-19 12:00:00,78.16,164.56,33.52,35.75,20.9,0.79,71.56,31.1,12.95,2.52,16.87,2.67 +2020-03-19 13:00:00,66.45,154.95,29.5,34.41,20.08,0.76,84.33,25.35,9.58,2.28,20.01,2.23 +2020-03-19 14:00:00,59.75,141.02,27.56,32.93,17.55,0.69,89.81,23.13,8.71,2.06,16.63,0.23 +2020-03-19 15:00:00,55.19,152.23,25.8,31.24,16.49,0.72,85.34,21.89,8.67,2.07,20.7,0.45 +2020-03-19 16:00:00,55.41,131.77,27.88,31.14,17.59,0.7,84.22,22.18,17.01,1.82,25.78,0.08 +2020-03-19 17:00:00,56.83,130.42,26.33,31.93,16.06,0.7,81.3,23.36,9.59,1.93,26.67,0.38 +2020-03-19 18:00:00,54.56,131.83,30.5,31.77,14.47,0.72,70.77,24.74,8.8,2.01,27.41,0.57 +2020-03-19 19:00:00,58.72,146.81,43.31,32.58,13.45,0.94,49.07,32.61,9.41,2.55,24.87,0.47 +2020-03-19 20:00:00,64.53,171.53,56.59,32.04,15.85,1.23,30.59,43.94,12.9,3.13,36.4,0.84 +2020-03-19 21:00:00,72.91,191.1,59.32,32.2,18.45,1.32,26.55,46.61,14.29,3.78,42.32,0.8 +2020-03-19 22:00:00,85.53,197.87,55.07,33.16,17.44,1.32,26.85,42.73,12.49,3.75,53.26,0.78 +2020-03-19 23:00:00,93.25,193.5,52.3,34.28,17.98,1.36,23.56,46.09,17.76,3.52,48.74,0.67 +2020-03-20 00:00:00,100.71,201.95,54.26,34.58,19.26,1.44,23.73,57.78,30.04,3.7,46.46,0.57 +2020-03-20 01:00:00,107.14,205.6,55.54,34.15,17.19,1.38,21.04,67.1,39.36,3.88,42.91,0.65 +2020-03-20 02:00:00,109.43,215.48,57.02,35.16,16.42,1.22,22.67,63.31,34.3,4.18,35.91,0.57 +2020-03-20 03:00:00,97.74,198.0,51.96,33.27,16.58,0.95,27.19,44.96,17.4,4.0,34.65,0.63 +2020-03-20 04:00:00,80.37,160.55,46.84,30.5,14.38,0.93,24.92,41.95,17.56,3.47,27.37,0.34 +2020-03-20 05:00:00,68.9,139.68,48.54,29.61,13.43,0.94,18.36,55.4,31.61,3.48,38.76,0.31 +2020-03-20 06:00:00,77.2,155.05,46.57,30.37,14.22,1.02,17.41,67.09,44.82,3.79,35.43,0.57 +2020-03-20 07:00:00,87.28,168.49,45.38,31.66,14.99,1.18,19.14,76.34,57.48,3.98,36.02,0.76 +2020-03-20 08:00:00,98.77,191.58,52.79,34.53,17.83,1.34,22.86,90.77,69.03,4.56,37.4,0.6 +2020-03-20 09:00:00,119.75,248.87,62.13,37.54,30.25,1.32,32.91,73.51,42.41,4.94,38.37,0.71 +2020-03-20 10:00:00,128.02,247.2,50.47,36.0,30.74,1.12,54.25,45.85,18.92,4.0,30.85,0.47 +2020-03-20 11:00:00,108.3,225.9,45.08,36.44,30.73,1.05,72.87,36.37,11.85,3.74,33.73,0.45 +2020-03-20 12:00:00,99.52,217.07,40.29,35.33,29.39,1.01,93.01,30.84,8.6,3.51,30.93,0.47 +2020-03-20 13:00:00,95.62,212.22,34.54,33.84,24.57,0.91,109.09,25.93,6.96,3.3,35.46,0.64 +2020-03-20 14:00:00,84.78,192.37,30.28,34.08,22.23,0.79,109.04,22.98,5.95,3.0,33.01,0.44 +2020-03-20 15:00:00,75.32,170.33,28.48,33.6,20.35,0.87,102.43,20.82,5.34,2.66,31.7,0.2 +2020-03-20 16:00:00,66.38,153.56,27.32,32.01,19.65,0.8,98.02,20.35,6.13,2.28,29.34,0.01 +2020-03-20 17:00:00,60.18,145.86,32.24,32.08,19.07,0.83,87.18,23.92,6.45,2.3,32.98,0.0 +2020-03-20 18:00:00,58.37,147.68,41.04,31.72,17.87,0.87,72.43,29.46,8.22,2.37,28.95,0.12 +2020-03-20 19:00:00,65.72,172.99,62.11,34.4,16.4,1.2,44.33,46.64,14.29,2.72,26.39,0.19 +2020-03-20 20:00:00,75.6,215.87,76.99,36.63,16.87,1.75,28.9,73.13,34.54,4.02,35.34,0.25 +2020-03-20 21:00:00,93.62,252.99,82.57,37.37,16.81,1.99,18.53,94.51,53.99,5.06,51.67,0.37 +2020-03-20 22:00:00,101.12,277.41,81.52,39.1,16.72,2.33,17.83,117.13,78.66,5.3,55.87,0.4 +2020-03-20 23:00:00,107.63,302.26,76.16,39.34,17.14,2.54,19.48,115.0,81.06,6.02,54.45,0.65 +2020-03-21 00:00:00,113.39,281.33,67.13,40.49,17.05,1.7,22.5,76.95,44.51,5.34,55.13,0.61 +2020-03-21 01:00:00,110.36,249.22,60.28,40.5,14.63,1.53,22.11,68.89,39.64,4.41,47.24,1.18 +2020-03-21 02:00:00,105.89,236.74,59.87,42.31,13.75,1.52,23.04,83.19,55.62,4.54,54.06,0.82 +2020-03-21 03:00:00,99.55,227.82,54.65,41.47,12.03,1.3,27.98,71.69,45.28,4.33,45.41,0.94 +2020-03-21 04:00:00,83.38,186.4,48.96,37.53,11.49,1.14,22.66,57.78,34.71,3.57,39.53,1.04 +2020-03-21 05:00:00,69.17,149.56,45.84,35.98,10.41,1.04,14.11,60.47,39.38,3.22,31.43,1.23 +2020-03-21 06:00:00,70.37,147.39,44.84,35.48,10.57,1.03,14.0,67.94,48.52,3.27,27.06,1.15 +2020-03-21 07:00:00,65.5,141.05,45.74,34.97,11.63,0.96,17.29,65.89,44.97,3.09,24.24,1.22 +2020-03-21 08:00:00,58.19,132.02,43.0,37.09,17.82,0.89,19.4,54.6,33.02,2.61,21.0,0.71 +2020-03-21 09:00:00,79.88,159.86,34.61,40.93,21.4,0.87,31.48,39.65,22.95,2.62,22.01,0.45 +2020-03-21 10:00:00,107.35,199.82,31.14,39.21,21.03,0.84,45.55,32.04,16.66,2.56,23.97,0.29 +2020-03-21 11:00:00,88.93,178.0,30.04,37.44,20.73,0.85,60.64,28.81,14.25,2.38,31.28,0.47 +2020-03-21 12:00:00,76.39,164.5,34.44,37.57,21.51,0.8,77.57,28.07,13.9,2.4,24.46,0.58 +2020-03-21 13:00:00,78.28,166.94,29.83,36.54,22.78,0.79,91.25,23.73,7.93,2.37,32.84,0.48 +2020-03-21 14:00:00,77.5,168.08,29.56,35.82,22.71,0.79,94.42,24.32,8.76,2.42,19.52,0.59 +2020-03-21 15:00:00,76.38,168.65,28.72,35.1,23.26,0.83,89.69,23.2,8.17,2.58,19.99,0.31 +2020-03-21 16:00:00,78.35,171.63,30.26,34.8,24.52,0.8,86.9,26.19,10.26,2.8,27.43,0.39 +2020-03-21 17:00:00,67.02,144.87,27.54,31.6,22.44,0.71,79.74,25.42,11.6,2.36,20.82,0.26 +2020-03-21 18:00:00,51.12,117.9,32.8,30.42,21.26,0.76,68.26,30.08,13.74,2.25,21.0,0.28 +2020-03-21 19:00:00,51.52,130.67,50.22,30.48,20.45,1.06,41.49,46.99,21.34,2.8,25.43,0.52 +2020-03-21 20:00:00,61.96,167.57,66.4,35.36,20.06,1.6,23.79,71.1,35.66,3.81,34.49,0.51 +2020-03-21 21:00:00,87.26,219.62,72.57,35.0,19.96,2.07,18.67,91.81,55.59,4.76,51.61,0.68 +2020-03-21 22:00:00,103.29,260.2,71.66,36.44,21.26,2.37,20.63,106.7,72.75,4.86,51.56,0.71 +2020-03-21 23:00:00,116.26,265.68,64.8,36.06,22.38,2.02,23.34,91.43,58.59,5.04,60.21,0.81 +2020-03-22 00:00:00,123.77,242.21,52.88,37.28,19.82,1.45,25.9,49.59,19.73,4.54,48.19,0.68 +2020-03-22 01:00:00,123.81,218.16,47.35,37.09,16.68,1.32,25.24,42.66,16.73,4.06,38.45,0.63 +2020-03-22 02:00:00,130.9,219.4,43.79,39.09,15.85,1.28,26.91,43.3,19.94,4.38,31.69,0.64 +2020-03-22 03:00:00,123.56,203.61,39.59,37.1,17.12,1.15,27.58,41.31,20.84,4.12,34.39,0.56 +2020-03-22 04:00:00,110.03,177.4,38.3,35.33,19.32,1.13,23.78,38.35,17.99,4.09,27.47,0.5 +2020-03-22 05:00:00,99.74,163.38,38.52,34.11,18.01,1.05,24.84,41.69,21.18,4.22,31.54,0.59 +2020-03-22 06:00:00,93.14,152.96,38.79,33.36,18.48,1.08,22.6,50.44,30.57,3.92,33.72,0.45 +2020-03-22 07:00:00,87.13,148.96,39.14,32.85,16.3,1.18,21.8,56.61,36.92,4.21,29.63,0.31 +2020-03-22 08:00:00,97.12,166.34,41.19,34.2,18.65,1.23,27.73,55.36,34.0,4.38,32.63,0.48 +2020-03-22 09:00:00,102.85,171.8,38.49,34.47,25.09,1.06,37.09,38.39,17.19,4.29,29.88,0.49 +2020-03-22 10:00:00,103.49,162.82,32.66,34.38,26.09,0.95,56.91,28.51,10.93,3.94,24.68,0.45 +2020-03-22 11:00:00,91.82,144.61,27.72,33.62,24.01,0.88,72.77,23.52,8.5,3.35,18.94,0.5 +2020-03-22 12:00:00,76.9,123.99,21.63,33.0,18.92,0.78,80.76,18.66,7.07,2.68,16.04,0.29 +2020-03-22 13:00:00,68.18,107.76,18.01,31.45,16.73,0.69,81.3,16.16,6.53,2.0,10.82,0.51 +2020-03-22 14:00:00,55.28,91.04,16.49,30.48,15.06,0.65,75.59,15.36,6.71,1.7,9.2,0.75 +2020-03-22 15:00:00,48.55,79.24,17.2,29.83,14.95,0.61,75.18,16.35,7.46,1.4,8.97,0.68 +2020-03-22 16:00:00,43.39,72.22,16.71,29.62,13.36,0.58,73.17,15.9,7.73,1.25,8.4,0.45 +2020-03-22 17:00:00,37.7,68.7,17.7,28.31,12.53,0.58,72.88,18.98,10.29,1.16,7.47,0.46 +2020-03-22 18:00:00,34.31,65.36,17.7,28.69,12.07,0.59,68.16,19.57,10.68,1.13,8.07,0.39 +2020-03-22 19:00:00,36.73,70.01,18.37,29.13,11.49,0.65,58.98,18.5,8.64,1.08,7.73,0.52 +2020-03-22 20:00:00,41.34,79.83,21.59,29.83,11.88,0.74,49.51,18.84,7.18,1.42,12.12,0.63 +2020-03-22 21:00:00,50.62,97.17,22.84,30.56,12.51,0.82,44.58,19.37,6.91,1.64,16.18,0.62 +2020-03-22 22:00:00,53.56,101.09,25.84,29.83,12.32,0.86,36.49,20.62,7.22,1.89,14.49,0.14 +2020-03-22 23:00:00,52.62,99.0,23.91,29.14,11.95,0.78,34.36,19.38,6.87,1.73,13.67,0.4 +2020-03-23 00:00:00,49.7,93.16,25.4,28.92,12.05,0.74,30.26,20.92,7.05,1.82,12.49,0.66 +2020-03-23 01:00:00,50.78,89.99,27.65,28.84,14.17,0.72,30.89,22.94,7.98,1.77,14.17,0.78 +2020-03-23 02:00:00,47.35,81.86,23.27,30.9,15.66,0.68,35.59,19.01,6.85,2.0,15.67,0.71 +2020-03-23 03:00:00,50.17,81.03,23.71,31.32,15.89,0.71,30.37,19.91,7.88,1.98,15.45,0.86 +2020-03-23 04:00:00,54.82,88.77,23.91,30.12,15.07,0.72,28.18,23.18,9.88,2.16,13.68,0.77 +2020-03-23 05:00:00,56.84,90.57,24.51,29.74,13.34,0.75,24.0,24.58,11.01,2.11,17.92,1.23 +2020-03-23 06:00:00,59.44,93.09,24.01,30.45,12.92,0.79,22.73,22.39,9.48,2.14,13.93,0.76 +2020-03-23 07:00:00,62.49,102.46,26.6,31.32,12.45,0.94,21.43,27.36,13.56,2.29,13.48,0.76 +2020-03-23 08:00:00,77.72,130.44,29.19,33.78,15.89,1.01,21.73,29.86,15.39,2.75,16.09,0.89 +2020-03-23 09:00:00,95.24,162.11,26.26,35.48,22.24,0.9,33.52,24.33,10.9,2.71,14.12,0.65 +2020-03-23 10:00:00,102.09,163.64,21.46,35.34,23.69,0.84,51.56,20.28,9.06,2.37,11.34,0.8 +2020-03-23 11:00:00,84.77,143.58,17.59,32.27,20.07,0.67,65.57,16.91,7.62,1.95,9.07,0.52 +2020-03-23 12:00:00,55.3,91.78,16.47,30.45,16.32,0.57,71.75,14.92,6.71,1.42,8.09,2.14 +2020-03-23 13:00:00,42.63,74.26,15.92,29.4,13.57,0.54,80.55,14.43,7.06,1.19,7.62,0.39 +2020-03-23 14:00:00,36.25,69.05,16.26,28.27,13.17,0.53,81.28,15.6,7.29,1.12,8.09,0.54 +2020-03-23 15:00:00,34.59,67.66,17.47,27.88,12.81,0.54,88.32,17.47,9.47,1.15,7.86,0.65 +2020-03-23 16:00:00,33.0,68.22,19.78,28.44,13.57,0.53,88.04,21.48,11.25,1.1,10.09,0.69 +2020-03-23 17:00:00,30.92,68.67,19.12,27.21,13.58,0.54,84.5,21.05,13.65,1.07,13.85,0.44 +2020-03-23 18:00:00,30.08,68.76,20.99,27.69,14.91,0.56,69.41,22.77,13.18,1.2,11.14,0.47 +2020-03-23 19:00:00,33.51,79.53,29.3,28.24,15.04,0.65,54.11,31.37,16.38,1.4,21.64,0.38 +2020-03-23 20:00:00,35.26,97.52,40.4,28.91,13.75,1.01,33.87,39.63,16.77,1.97,22.66,0.38 +2020-03-23 21:00:00,49.91,123.83,44.68,30.73,13.53,1.21,24.47,43.98,18.59,2.75,27.41,0.76 +2020-03-23 22:00:00,64.6,139.68,45.31,30.99,13.7,1.31,21.18,46.23,21.87,3.07,37.89,0.8 +2020-03-23 23:00:00,64.72,143.55,43.75,30.63,16.7,1.25,22.11,46.79,23.21,3.48,42.06,0.84 +2020-03-24 00:00:00,67.55,137.74,41.65,31.45,19.18,1.18,21.24,43.29,20.71,3.49,34.29,0.59 +2020-03-24 01:00:00,71.31,131.2,37.75,31.42,17.17,1.06,24.04,39.03,18.87,3.53,24.63,1.01 +2020-03-24 02:00:00,72.24,123.99,34.33,33.07,16.64,0.98,25.84,34.03,15.79,3.25,21.16,0.64 +2020-03-24 03:00:00,74.12,120.13,29.67,33.07,15.78,0.93,29.04,29.25,13.17,3.37,27.21,0.29 +2020-03-24 04:00:00,73.08,116.13,28.87,32.92,18.34,0.93,28.11,26.69,11.0,3.63,19.91,0.81 +2020-03-24 05:00:00,76.98,117.94,28.43,33.44,17.81,0.89,29.22,27.21,11.98,3.44,18.11,0.52 +2020-03-24 06:00:00,76.64,113.95,29.68,33.02,16.52,0.92,23.29,29.35,13.7,3.65,18.69,0.56 +2020-03-24 07:00:00,72.75,114.18,33.11,32.36,16.31,1.0,21.16,35.04,18.56,3.87,22.6,0.5 +2020-03-24 08:00:00,73.48,126.47,34.61,33.43,17.8,1.04,22.03,35.49,18.41,3.81,21.24,0.74 +2020-03-24 09:00:00,77.82,143.76,31.15,33.09,18.87,0.91,32.69,28.86,12.75,3.35,17.83,0.67 +2020-03-24 10:00:00,73.7,159.11,27.18,32.0,18.96,0.79,46.56,24.26,10.63,2.72,14.49,2.25 +2020-03-24 11:00:00,59.88,116.85,22.33,31.31,22.15,0.71,59.69,20.3,8.45,2.26,12.48,0.43 +2020-03-24 12:00:00,55.22,109.82,19.79,31.61,21.08,0.66,70.32,17.99,7.71,2.07,10.65,0.51 +2020-03-24 13:00:00,57.32,110.12,17.73,32.32,20.84,0.64,73.29,16.87,7.1,1.92,9.63,0.36 +2020-03-24 14:00:00,55.96,111.27,18.53,32.61,18.53,0.63,78.15,17.22,7.24,1.94,8.91,0.52 +2020-03-24 15:00:00,55.3,107.13,19.34,32.68,16.26,0.7,78.13,19.25,9.3,1.82,8.51,0.72 +2020-03-24 16:00:00,54.49,109.68,22.72,33.0,14.69,0.62,65.62,24.64,12.16,1.79,9.26,0.63 +2020-03-24 17:00:00,49.21,121.88,18.93,30.51,11.87,0.51,49.27,21.43,12.53,1.58,9.49,0.27 +2020-03-24 18:00:00,25.89,73.21,19.35,28.28,10.37,0.58,35.91,19.74,9.58,1.04,10.19,0.66 +2020-03-24 19:00:00,16.32,31.07,25.09,29.36,9.83,0.65,23.6,22.4,9.22,1.32,10.91,0.4 +2020-03-24 20:00:00,20.11,40.28,29.97,30.39,10.11,0.74,20.43,25.01,9.57,1.47,12.01,0.54 +2020-03-24 21:00:00,26.96,53.32,25.44,32.06,10.12,0.75,23.36,22.85,9.59,1.75,14.24,0.66 +2020-03-24 22:00:00,29.25,53.86,26.1,31.24,10.01,0.8,20.42,25.57,12.23,1.5,14.54,0.47 +2020-03-24 23:00:00,24.89,43.73,27.95,31.19,10.3,0.87,16.13,29.78,14.97,2.06,18.66,0.58 +2020-03-25 00:00:00,28.45,53.63,26.98,31.46,10.52,0.84,14.13,29.05,14.84,2.12,22.75,0.6 +2020-03-25 01:00:00,31.42,63.04,26.11,31.78,10.12,0.84,16.53,29.2,15.57,2.12,18.29,0.48 +2020-03-25 02:00:00,32.85,59.0,24.31,33.31,9.53,0.82,15.92,27.02,14.95,2.12,18.21,0.79 +2020-03-25 03:00:00,31.52,58.78,23.1,34.11,9.27,0.74,15.28,25.51,14.61,2.13,18.79,0.94 +2020-03-25 04:00:00,34.52,58.71,22.31,33.68,10.38,0.74,11.44,24.2,13.57,2.07,20.48,0.94 +2020-03-25 05:00:00,41.34,70.22,21.13,35.88,11.04,0.75,13.34,20.9,10.87,2.26,19.08,0.91 +2020-03-25 06:00:00,49.28,81.13,19.95,36.04,10.68,0.74,13.38,22.28,12.92,2.43,18.56,0.83 +2020-03-25 07:00:00,50.75,82.29,20.23,35.88,9.88,0.85,13.02,28.65,19.66,2.45,15.38,0.74 +2020-03-25 08:00:00,54.71,87.37,23.21,36.73,11.48,0.91,21.01,28.92,17.94,2.69,16.82,0.38 +2020-03-25 09:00:00,56.01,90.61,26.58,36.57,13.25,0.83,24.13,26.88,14.37,2.52,14.04,0.66 +2020-03-25 10:00:00,55.26,86.35,21.74,35.52,13.26,0.7,35.92,21.62,10.3,2.25,12.51,0.58 +2020-03-25 11:00:00,45.79,74.34,17.77,34.44,14.67,0.62,46.86,18.26,9.02,1.76,10.27,0.42 +2020-03-25 12:00:00,38.5,65.18,16.41,34.69,14.27,0.61,54.95,17.2,8.75,1.32,9.2,0.42 +2020-03-25 13:00:00,36.55,64.51,16.12,34.94,13.04,0.54,58.55,16.63,8.26,1.11,8.55,0.46 +2020-03-25 14:00:00,31.44,60.88,19.24,34.72,12.7,0.5,56.41,17.42,11.78,0.99,7.99,0.57 +2020-03-25 15:00:00,26.38,53.92,19.04,33.88,11.53,0.59,52.27,20.39,13.54,0.92,7.9,2.68 +2020-03-25 16:00:00,24.21,50.76,19.49,33.11,10.36,0.43,51.54,19.09,14.2,0.82,8.12,0.62 +2020-03-25 17:00:00,21.67,52.45,19.01,32.48,10.46,0.44,51.74,18.83,15.53,0.78,9.15,0.62 +2020-03-25 18:00:00,24.18,56.6,19.75,32.28,10.79,0.49,46.72,21.26,15.19,0.85,10.09,0.71 +2020-03-25 19:00:00,27.28,62.01,20.74,32.49,11.07,0.58,41.26,22.73,15.88,0.97,10.9,0.74 +2020-03-25 20:00:00,31.4,68.69,20.65,33.74,11.26,0.62,37.84,24.03,13.52,1.25,12.28,0.78 +2020-03-25 21:00:00,41.65,74.51,21.18,35.24,11.68,0.67,28.9,23.12,11.87,1.33,12.91,0.64 +2020-03-25 22:00:00,44.87,77.49,20.85,36.44,11.8,0.71,24.52,19.33,8.54,1.44,13.5,0.2 +2020-03-25 23:00:00,48.93,80.23,20.76,36.83,12.65,0.74,24.97,19.23,8.42,1.48,11.02,0.42 +2020-03-26 00:00:00,63.42,91.16,20.72,38.94,13.74,0.7,22.46,19.79,8.76,1.83,12.63,0.48 +2020-03-26 01:00:00,76.62,109.84,18.16,41.56,14.71,0.67,23.48,17.53,8.17,2.01,12.09,0.36 +2020-03-26 02:00:00,96.43,133.29,15.82,44.17,17.24,0.63,32.32,16.15,7.84,1.83,9.96,0.69 +2020-03-26 03:00:00,77.94,118.12,13.69,35.73,12.47,0.5,36.11,14.27,7.69,1.54,8.09,0.48 +2020-03-26 04:00:00,37.78,59.99,14.07,33.95,11.62,0.5,30.66,14.31,7.62,1.16,8.8,0.21 +2020-03-26 05:00:00,33.79,51.6,16.21,34.58,11.11,0.52,25.4,15.91,8.09,1.45,9.14,0.95 +2020-03-26 06:00:00,39.91,58.66,16.78,36.18,12.3,0.55,24.4,17.74,9.69,1.48,9.37,0.99 +2020-03-26 07:00:00,50.94,80.61,19.4,37.72,13.67,0.6,19.44,21.8,12.52,1.57,11.43,0.63 +2020-03-26 08:00:00,60.18,94.71,18.86,37.91,16.71,0.62,24.22,20.82,11.79,1.87,10.92,0.54 +2020-03-26 09:00:00,62.44,100.2,16.53,35.4,15.91,0.58,29.69,17.97,10.15,1.65,9.25,0.49 +2020-03-26 10:00:00,52.79,85.39,15.83,33.08,14.37,0.56,35.4,17.67,9.67,1.32,7.92,0.29 +2020-03-26 11:00:00,42.71,78.28,14.47,32.17,13.65,0.56,39.33,16.14,8.9,1.35,7.02,0.49 +2020-03-26 12:00:00,33.84,65.09,13.98,31.59,13.12,0.49,39.54,15.51,8.58,1.07,6.38,0.2 +2020-03-26 13:00:00,27.42,50.9,13.5,31.22,12.62,0.49,40.43,15.19,8.19,0.94,5.87,0.0 +2020-03-26 14:00:00,25.81,49.34,13.36,30.69,12.21,0.49,37.11,15.69,8.94,0.92,5.34,0.32 +2020-03-26 15:00:00,23.44,47.33,14.73,29.87,11.3,0.53,37.26,19.01,10.73,0.84,5.75,0.47 +2020-03-26 16:00:00,23.57,48.67,13.8,29.26,10.41,0.48,40.86,15.66,8.6,0.92,5.85,0.37 +2020-03-26 17:00:00,21.51,46.16,13.84,28.31,10.39,0.48,39.61,15.52,8.21,0.79,6.28,0.38 +2020-03-26 18:00:00,24.97,51.12,14.76,27.83,10.24,0.52,37.56,16.03,8.38,0.97,9.16,4.46 +2020-03-26 19:00:00,28.06,62.89,16.31,28.46,10.2,0.61,34.64,16.98,8.33,1.15,7.62,0.21 +2020-03-26 20:00:00,35.6,72.0,19.26,29.8,11.11,0.63,26.71,18.55,8.88,1.35,10.36,2.34 +2020-03-26 21:00:00,45.47,81.75,21.98,31.6,11.83,0.68,20.87,20.32,8.98,1.52,11.04,0.19 +2020-03-26 22:00:00,52.13,87.22,21.64,33.74,12.89,0.72,18.71,19.87,8.72,1.72,11.39,0.46 +2020-03-26 23:00:00,59.68,95.1,20.22,34.47,13.91,0.75,18.06,19.37,8.94,1.92,11.36,0.75 +2020-03-27 00:00:00,64.76,101.02,18.62,33.74,14.33,0.71,19.28,18.09,9.0,1.7,11.57,0.31 +2020-03-27 01:00:00,69.1,103.06,16.88,35.34,14.37,0.65,22.72,16.9,8.21,1.85,11.88,0.28 +2020-03-27 02:00:00,65.54,101.07,13.29,33.57,13.89,0.54,26.94,14.34,7.67,1.65,9.48,0.39 +2020-03-27 03:00:00,36.26,64.53,12.24,28.96,11.0,0.48,23.56,13.69,8.34,1.12,8.04,1.22 +2020-03-27 04:00:00,21.01,42.42,11.74,27.57,11.98,0.45,22.94,13.31,7.39,0.92,7.26,0.42 +2020-03-27 05:00:00,19.68,38.54,12.45,26.81,11.16,0.45,26.68,13.23,7.22,0.97,8.76,0.31 +2020-03-27 06:00:00,16.8,45.23,14.03,26.81,10.15,0.49,22.82,15.16,8.42,1.03,9.84,0.32 +2020-03-27 07:00:00,15.53,36.29,17.63,26.56,9.89,0.55,16.5,19.5,11.22,0.9,8.86,0.1 +2020-03-27 08:00:00,20.69,41.65,19.3,27.2,10.44,0.58,15.97,20.89,11.51,1.16,9.1,0.24 +2020-03-27 09:00:00,28.68,56.2,18.33,27.67,11.22,0.59,18.45,20.99,12.31,1.15,9.06,0.23 +2020-03-27 10:00:00,32.34,53.22,18.49,27.74,11.24,0.61,19.88,20.78,12.12,1.15,9.34,0.44 +2020-03-27 11:00:00,32.41,52.25,19.06,27.8,10.79,0.65,17.65,19.69,10.52,1.16,9.63,0.42 +2020-03-27 12:00:00,32.01,49.86,18.39,28.22,11.45,0.62,22.4,19.09,10.01,1.49,9.94,0.45 +2020-03-27 13:00:00,27.48,42.91,13.87,27.46,12.07,0.52,30.4,14.66,7.94,1.49,10.05,3.47 +2020-03-27 14:00:00,19.71,32.25,13.53,26.87,11.51,0.48,38.24,13.9,7.19,1.42,8.45,3.29 +2020-03-27 15:00:00,15.34,23.03,13.33,26.4,11.66,0.47,39.04,13.63,6.86,1.18,7.81,6.0 +2020-03-27 16:00:00,14.92,20.76,13.69,25.94,11.55,0.44,38.06,14.01,6.92,0.7,6.38,6.28 +2020-03-27 17:00:00,14.59,20.33,13.78,25.34,10.37,0.42,40.56,13.75,6.81,0.72,6.19,6.29 +2020-03-27 18:00:00,15.83,24.72,13.93,24.85,10.68,0.46,39.96,13.71,6.59,0.73,6.63,8.22 +2020-03-27 19:00:00,18.37,32.08,15.37,24.89,9.43,0.53,37.3,14.96,6.79,0.86,9.18,6.4 +2020-03-27 20:00:00,17.6,36.26,15.33,25.1,8.67,0.5,34.81,14.34,6.55,0.98,11.77,5.47 +2020-03-27 21:00:00,18.59,33.96,14.29,24.99,8.73,0.48,32.23,13.87,6.75,0.86,10.65,5.01 +2020-03-27 22:00:00,16.82,24.29,14.96,24.13,9.14,0.52,26.75,14.48,7.03,0.71,9.86,0.17 +2020-03-27 23:00:00,11.31,15.59,15.05,23.61,9.3,0.51,23.94,14.47,6.89,0.74,10.23,0.21 +2020-03-28 00:00:00,11.57,16.53,16.38,23.75,9.6,0.52,19.07,16.49,8.44,0.81,8.93,0.16 +2020-03-28 01:00:00,12.78,17.61,17.46,24.12,8.69,0.53,16.24,16.69,7.97,0.98,8.93,0.5 +2020-03-28 02:00:00,15.39,21.71,18.84,25.76,9.18,0.53,12.57,17.4,8.04,1.02,9.8,0.37 +2020-03-28 03:00:00,14.94,24.11,19.0,25.43,9.33,0.54,11.65,19.22,10.1,1.13,11.34,0.34 +2020-03-28 04:00:00,16.68,24.44,18.42,25.36,9.21,0.55,12.46,18.48,9.27,1.26,12.36,0.31 +2020-03-28 05:00:00,17.19,27.2,17.37,25.61,8.47,0.55,12.82,17.18,9.07,1.4,12.98,0.44 +2020-03-28 06:00:00,17.36,28.59,17.07,25.6,10.26,0.58,13.46,18.62,10.19,1.52,14.97,0.34 +2020-03-28 07:00:00,22.13,37.07,17.78,26.69,10.98,0.62,13.37,19.89,11.35,1.51,13.7,0.39 +2020-03-28 08:00:00,27.64,43.98,18.5,27.26,12.11,0.62,17.23,19.96,11.81,1.58,11.8,0.74 +2020-03-28 09:00:00,32.43,47.56,16.58,26.56,12.42,0.58,21.86,18.33,10.45,1.35,10.5,3.01 +2020-03-28 10:00:00,28.06,39.87,14.82,25.77,11.63,0.53,26.01,16.62,9.54,1.12,9.47,0.15 +2020-03-28 11:00:00,21.87,30.11,13.59,25.24,11.11,0.5,30.57,15.42,8.73,0.81,8.41,1.75 +2020-03-28 12:00:00,20.72,28.62,12.6,25.23,10.81,0.5,33.77,14.31,8.02,0.85,7.47,0.16 +2020-03-28 13:00:00,21.12,30.8,13.02,24.94,11.0,0.47,34.33,14.31,7.98,0.8,7.82,0.14 +2020-03-28 14:00:00,18.55,29.27,12.77,24.2,10.41,0.47,36.32,14.47,8.01,0.71,7.7,6.16 +2020-03-28 15:00:00,17.57,30.43,13.27,24.06,9.65,0.45,37.73,15.04,8.34,0.65,7.04,0.07 +2020-03-28 16:00:00,14.37,27.5,14.61,25.19,9.83,0.43,39.66,16.96,9.32,0.68,7.31,0.0 +2020-03-28 17:00:00,14.1,28.23,18.53,25.46,9.22,0.41,40.73,16.3,12.65,0.6,6.06,0.0 +2020-03-28 18:00:00,13.31,25.88,18.03,23.38,9.09,0.42,40.88,20.06,11.93,0.64,6.2,0.23 +2020-03-28 19:00:00,14.22,29.01,20.04,23.56,9.01,0.46,35.92,22.84,14.51,0.73,6.38,0.21 +2020-03-28 20:00:00,19.18,37.2,24.77,24.21,9.47,0.62,27.45,27.2,13.38,1.2,8.31,0.2 +2020-03-28 21:00:00,33.12,56.98,24.88,25.22,10.49,0.73,22.09,24.18,10.1,1.33,10.03,0.23 +2020-03-28 22:00:00,41.58,67.76,22.7,26.52,12.21,0.73,21.24,21.18,9.15,1.45,11.94,0.28 +2020-03-28 23:00:00,43.64,69.23,19.5,26.15,12.5,0.68,23.89,18.95,8.57,1.6,14.72,0.86 +2020-03-29 00:00:00,36.91,60.94,17.22,25.25,12.38,0.56,24.89,17.23,8.02,1.54,12.74,0.09 +2020-03-29 01:00:00,30.65,52.04,16.75,24.88,10.48,0.52,25.6,17.24,8.59,1.49,12.22,0.35 +2020-03-29 02:00:00,28.55,47.33,16.17,25.65,9.64,0.53,25.18,15.88,7.97,1.39,10.9,0.26 +2020-03-29 03:00:00,22.27,42.91,15.87,25.5,8.25,0.54,26.67,15.9,8.21,1.31,11.09,0.17 +2020-03-29 04:00:00,23.13,43.61,14.21,25.33,8.47,0.49,25.13,14.23,7.28,1.06,9.15,0.39 +2020-03-29 05:00:00,27.05,49.48,14.23,25.49,8.46,0.47,24.71,14.37,7.42,0.95,10.06,0.3 +2020-03-29 06:00:00,28.86,54.36,15.44,25.39,9.25,0.51,23.09,15.0,7.66,0.92,8.14,0.69 +2020-03-29 07:00:00,32.9,60.9,16.21,25.7,10.06,0.54,21.09,16.5,8.6,0.95,8.09,0.16 +2020-03-29 08:00:00,39.95,77.39,16.44,27.26,12.6,0.55,24.26,16.56,8.57,1.13,8.51,0.08 +2020-03-29 09:00:00,39.67,71.12,14.66,26.31,12.63,0.54,31.73,14.98,7.62,1.08,7.74,5.15 +2020-03-29 10:00:00,30.94,60.64,14.17,25.1,11.71,0.52,37.49,13.96,7.13,0.96,8.09,1.59 +2020-03-29 11:00:00,26.44,59.78,13.51,24.21,11.06,0.47,41.42,13.71,6.97,0.84,7.76,2.95 +2020-03-29 12:00:00,25.94,59.76,12.96,22.29,10.4,0.48,44.39,13.56,6.92,0.76,6.87,4.52 +2020-03-29 13:00:00,24.24,58.08,13.94,22.05,10.3,0.47,46.86,15.04,7.95,0.62,6.4,4.63 +2020-03-29 14:00:00,23.6,55.4,14.43,21.76,10.09,0.45,47.54,15.95,7.98,0.67,5.97,6.38 +2020-03-29 15:00:00,21.22,52.1,17.97,21.11,9.65,0.44,49.46,16.63,14.32,0.63,5.61,0.0 +2020-03-29 16:00:00,18.54,47.25,19.66,20.61,9.44,0.42,52.39,12.6,9.83,0.59,6.11,0.1 +2020-03-29 17:00:00,16.23,42.63,18.21,21.64,9.44,0.43,53.26,16.65,12.35,0.63,6.13,0.3 +2020-03-29 18:00:00,15.03,43.75,18.2,21.8,9.66,0.44,52.43,19.75,8.94,0.65,5.68,0.41 +2020-03-29 19:00:00,16.91,44.7,19.48,22.16,9.89,0.51,45.99,19.5,11.01,0.68,6.25,0.46 +2020-03-29 20:00:00,22.53,50.43,21.02,23.09,10.53,0.6,37.29,22.62,12.3,1.07,7.79,0.93 +2020-03-29 21:00:00,31.23,61.88,20.97,23.86,11.41,0.65,32.45,21.7,9.82,1.19,9.25,1.01 +2020-03-29 22:00:00,39.38,70.77,19.53,24.56,11.49,0.63,30.95,18.06,7.23,1.15,9.64,0.16 +2020-03-29 23:00:00,39.87,70.85,17.1,24.51,12.02,0.62,33.62,16.38,7.15,1.08,9.29,0.25 +2020-03-30 00:00:00,37.37,68.36,16.14,24.01,11.84,0.58,34.49,15.69,7.16,1.09,11.16,0.27 +2020-03-30 01:00:00,33.53,60.42,17.08,23.76,10.62,0.55,33.4,16.05,7.52,1.09,9.4,0.26 +2020-03-30 02:00:00,30.7,52.5,15.75,24.61,10.58,0.55,33.76,14.99,7.02,1.08,11.1,0.26 +2020-03-30 03:00:00,28.83,50.15,16.49,24.99,11.15,0.56,37.16,15.38,7.39,0.93,11.32,0.2 +2020-03-30 04:00:00,28.37,51.13,16.68,24.35,14.86,0.55,36.91,15.27,7.07,1.13,11.47,0.87 +2020-03-30 05:00:00,30.11,52.58,16.41,23.99,14.19,0.56,33.54,15.29,7.1,1.15,10.86,0.24 +2020-03-30 06:00:00,35.46,58.4,16.87,24.72,13.23,0.58,27.62,15.96,7.27,1.07,11.53,0.21 +2020-03-30 07:00:00,42.15,73.16,18.23,24.73,14.87,0.61,24.7,17.41,7.89,1.2,10.61,0.3 +2020-03-30 08:00:00,52.33,90.23,17.32,28.1,16.69,0.71,26.5,17.15,8.52,1.34,10.2,0.34 +2020-03-30 09:00:00,67.34,113.45,15.8,28.01,18.97,0.72,34.7,16.09,8.06,1.56,9.57,3.95 +2020-03-30 10:00:00,63.86,106.18,15.2,24.87,17.56,0.64,43.62,15.33,7.52,1.43,8.94,5.36 +2020-03-30 11:00:00,45.97,77.84,15.36,22.57,14.43,0.57,47.17,15.16,7.37,1.23,8.23,6.95 +2020-03-30 12:00:00,33.84,60.48,14.55,21.66,12.42,0.52,50.01,14.43,6.96,0.93,7.1,4.79 +2020-03-30 13:00:00,26.01,52.36,14.14,21.4,11.74,0.47,52.22,14.31,6.86,0.81,6.43,3.07 +2020-03-30 14:00:00,23.94,49.6,14.43,21.08,10.25,0.44,53.62,15.9,8.34,0.71,6.03,0.0 +2020-03-30 15:00:00,23.02,48.84,15.92,20.8,9.85,0.45,54.87,16.87,9.86,0.78,5.83,0.0 +2020-03-30 16:00:00,21.8,45.03,20.35,20.82,9.08,0.45,56.24,15.3,15.06,0.73,5.82,0.0 +2020-03-30 17:00:00,19.12,43.0,12.96,20.32,9.96,0.45,56.78,11.08,4.89,0.7,6.11,0.0 +2020-03-30 18:00:00,18.04,41.14,16.94,19.83,9.86,0.48,54.71,14.16,10.01,0.75,6.1,2.02 +2020-03-30 19:00:00,17.43,42.13,21.4,19.8,9.42,0.52,48.96,21.26,11.94,0.74,6.88,0.0 +2020-03-30 20:00:00,22.55,52.99,22.25,20.6,10.34,0.64,38.99,22.99,11.31,1.13,8.09,2.28 +2020-03-30 21:00:00,36.33,73.72,22.95,22.62,11.91,0.71,32.33,21.39,8.51,1.24,9.48,0.07 +2020-03-30 22:00:00,47.66,87.18,24.57,24.37,13.06,0.77,26.77,21.15,7.59,1.48,11.33,0.14 +2020-03-30 23:00:00,56.28,100.97,22.72,24.97,12.36,0.75,27.12,20.24,7.78,1.51,12.41,0.19 +2020-03-31 00:00:00,57.47,100.74,21.81,25.45,13.04,0.7,28.16,19.97,7.89,1.38,12.02,0.36 +2020-03-31 01:00:00,59.56,100.03,20.18,25.47,12.49,0.67,27.89,18.69,8.0,1.38,12.28,0.84 +2020-03-31 02:00:00,61.86,96.44,17.15,26.04,12.76,0.61,31.11,16.36,7.19,1.37,11.62,1.04 +2020-03-31 03:00:00,52.21,77.26,16.6,24.19,11.91,0.58,32.13,16.04,7.35,1.21,10.82,0.61 +2020-03-31 04:00:00,44.65,65.72,16.0,23.7,10.71,0.6,31.44,15.57,7.04,1.14,10.59,0.36 +2020-03-31 05:00:00,39.74,61.36,15.76,23.72,10.39,0.6,30.98,15.12,6.95,1.12,10.19,0.37 +2020-03-31 06:00:00,40.49,62.74,16.37,23.93,11.18,0.59,29.09,15.57,7.12,1.16,9.91,0.27 +2020-03-31 07:00:00,39.98,62.91,17.0,23.62,13.07,0.62,28.76,16.02,7.2,1.21,9.7,0.31 +2020-03-31 08:00:00,36.9,65.54,17.52,24.06,14.37,0.65,32.16,16.39,7.23,1.27,9.76,0.37 +2020-03-31 09:00:00,37.39,69.55,17.18,24.61,16.0,0.62,39.38,16.32,7.26,1.44,9.49,3.04 +2020-03-31 10:00:00,32.79,65.49,16.78,32.63,16.14,0.58,44.71,16.23,7.09,1.25,8.55,5.27 +2020-03-31 11:00:00,32.35,61.77,15.91,27.94,15.77,0.55,51.11,15.74,7.04,1.18,7.99,5.86 +2020-03-31 12:00:00,32.08,57.24,15.26,26.68,15.94,0.53,58.04,15.35,6.95,1.0,7.53,4.56 +2020-03-31 13:00:00,28.86,53.13,15.82,26.15,13.36,0.52,57.18,15.26,7.32,0.98,7.66,0.05 +2020-03-31 14:00:00,25.17,50.31,20.94,26.15,11.55,0.49,55.04,19.19,13.98,0.81,7.02,5.01 +2020-03-31 15:00:00,23.72,47.76,19.17,26.2,10.48,0.45,52.67,18.42,11.4,0.8,7.07,0.1 +2020-03-31 16:00:00,22.93,50.08,18.56,26.91,10.27,0.45,52.21,20.38,13.26,0.75,6.99,2.01 +2020-03-31 17:00:00,22.35,51.41,19.23,27.59,11.06,0.45,51.46,21.76,13.78,0.74,7.07,0.2 +2020-03-31 18:00:00,21.09,52.93,21.41,27.76,10.98,0.47,52.68,21.95,13.57,0.82,7.79,0.13 +2020-03-31 19:00:00,24.44,63.21,21.08,28.66,11.29,0.57,46.84,22.37,13.64,0.86,8.3,0.14 +2020-03-31 20:00:00,28.1,67.26,21.74,28.8,11.88,0.6,42.91,22.77,12.4,0.89,9.0,0.16 +2020-03-31 21:00:00,28.62,66.3,18.47,28.33,10.86,0.55,39.72,20.45,12.22,0.93,8.51,1.78 +2020-03-31 22:00:00,27.12,73.25,16.93,28.74,10.82,0.54,36.08,19.79,10.66,0.94,7.99,0.16 +2020-03-31 23:00:00,27.59,85.77,15.88,28.56,9.52,0.54,31.32,16.61,8.17,0.87,7.7,1.87 +2020-04-01 00:00:00,20.84,49.25,16.57,28.96,10.7,0.54,26.96,16.52,7.58,0.89,8.2,0.24 +2020-04-01 01:00:00,20.25,44.36,16.58,29.03,10.35,0.57,23.84,16.14,7.2,1.09,9.09,0.11 +2020-04-01 02:00:00,20.83,50.41,15.85,29.67,11.45,0.55,24.79,15.42,7.29,0.93,8.56,0.49 +2020-04-01 03:00:00,22.88,52.37,16.86,29.86,12.42,0.6,21.81,16.36,8.17,1.01,8.62,0.4 +2020-04-01 04:00:00,23.69,51.36,17.07,28.86,11.63,0.59,18.66,16.27,7.6,1.02,9.3,0.3 +2020-04-01 05:00:00,24.8,49.8,18.01,29.34,11.09,0.62,15.0,17.89,8.5,1.13,10.02,0.37 +2020-04-01 06:00:00,28.41,52.85,19.69,29.2,10.67,0.65,12.79,19.78,9.7,1.21,10.78,0.58 +2020-04-01 07:00:00,29.22,56.48,20.75,29.39,10.88,0.72,10.95,21.53,11.0,1.45,11.65,0.43 +2020-04-01 08:00:00,33.0,66.19,21.35,30.97,12.92,0.77,15.61,22.32,11.21,1.6,11.75,0.03 +2020-04-01 09:00:00,42.49,87.41,19.57,33.04,15.52,0.75,22.8,20.71,10.51,1.65,12.27,3.12 +2020-04-01 10:00:00,55.59,108.58,18.37,27.69,16.64,0.72,34.0,20.04,9.78,1.56,10.52,3.65 +2020-04-01 11:00:00,61.32,108.52,18.18,27.79,17.94,0.74,45.98,18.57,8.76,1.6,9.76,5.39 +2020-04-01 12:00:00,62.08,106.54,17.59,26.1,18.74,0.7,56.97,17.86,8.55,1.52,9.35,5.5 +2020-04-01 13:00:00,53.9,90.85,18.43,24.29,17.47,0.62,60.05,18.98,9.58,1.31,8.77,6.26 +2020-04-01 14:00:00,39.81,72.43,17.78,24.23,14.0,0.56,59.76,18.77,10.93,1.07,7.81,4.37 +2020-04-01 15:00:00,32.23,62.15,16.94,22.86,13.35,0.54,55.06,17.79,11.94,0.92,7.15,4.81 +2020-04-01 16:00:00,27.57,60.05,20.65,22.99,12.73,0.51,53.61,19.78,10.98,0.76,7.05,0.0 +2020-04-01 17:00:00,23.69,56.83,20.53,22.95,12.78,0.47,51.84,19.95,12.25,0.84,6.77,0.0 +2020-04-01 18:00:00,23.9,57.42,20.18,22.58,12.32,0.47,50.69,18.35,12.81,0.65,6.97,3.36 +2020-04-01 19:00:00,23.61,56.88,21.83,23.45,10.6,0.52,44.17,20.36,12.9,0.73,7.59,6.81 +2020-04-01 20:00:00,21.27,55.37,21.34,23.83,10.5,0.59,36.8,22.25,14.66,0.85,8.36,6.8 +2020-04-01 21:00:00,27.94,58.68,23.07,24.47,11.87,0.65,32.94,24.56,13.39,0.85,9.33,6.56 +2020-04-01 22:00:00,32.97,60.37,25.45,25.48,12.72,0.67,32.7,23.07,15.39,1.15,10.33,6.39 +2020-04-01 23:00:00,36.93,64.95,17.52,24.37,12.71,0.7,33.54,19.05,8.91,0.99,9.96,6.21 +2020-04-02 00:00:00,35.48,61.75,16.33,24.28,12.46,0.63,30.76,16.24,7.52,1.0,9.44,6.15 +2020-04-02 01:00:00,33.42,59.43,15.8,25.45,11.72,0.58,28.78,15.54,7.35,0.98,9.14,3.14 +2020-04-02 02:00:00,34.32,60.89,15.01,25.14,11.4,0.55,26.61,15.01,7.22,0.97,9.08,1.63 +2020-04-02 03:00:00,30.71,55.98,15.35,23.57,10.81,0.57,27.82,14.78,7.45,0.97,8.88,0.23 +2020-04-02 04:00:00,31.61,57.02,14.39,23.83,10.57,0.59,27.19,14.23,6.98,0.94,8.8,0.1 +2020-04-02 05:00:00,30.54,56.2,14.5,23.74,10.42,0.6,27.72,14.16,7.45,0.93,8.53,0.13 +2020-04-02 06:00:00,31.49,59.0,15.0,24.31,10.46,0.61,26.73,14.49,6.94,0.84,8.72,0.11 +2020-04-02 07:00:00,35.22,63.77,15.55,24.47,10.26,0.66,26.01,15.18,7.28,1.03,9.13,0.19 +2020-04-02 08:00:00,37.85,70.8,15.34,22.49,11.36,0.7,27.6,15.36,7.52,1.26,9.3,0.25 +2020-04-02 09:00:00,37.26,75.53,14.79,23.42,12.07,0.68,34.25,14.77,7.33,1.17,8.87,2.58 +2020-04-02 10:00:00,33.31,76.55,14.19,22.5,12.25,0.65,41.15,14.37,7.05,1.01,7.85,2.66 +2020-04-02 11:00:00,31.5,70.52,13.76,23.26,12.3,0.63,45.08,14.24,6.98,1.03,7.17,1.4 +2020-04-02 12:00:00,28.79,68.38,13.79,22.02,11.91,0.6,46.22,14.44,6.92,0.74,6.75,1.48 +2020-04-02 13:00:00,26.25,62.76,15.79,21.84,11.11,0.55,47.55,18.87,10.49,0.79,6.27,0.07 +2020-04-02 14:00:00,23.61,58.69,17.51,21.35,10.14,0.57,48.78,20.4,10.74,0.71,5.84,0.21 +2020-04-02 15:00:00,23.0,56.66,19.75,21.11,10.06,0.62,50.23,21.55,14.1,0.71,5.46,0.19 +2020-04-02 16:00:00,20.23,51.92,20.21,20.63,9.62,0.52,52.68,22.45,15.78,0.77,5.69,0.3 +2020-04-02 17:00:00,16.06,47.94,17.92,20.06,9.22,0.47,55.95,19.91,15.26,0.69,5.93,0.24 +2020-04-02 18:00:00,15.16,45.9,21.51,19.1,9.07,0.46,57.43,21.08,15.0,0.64,5.79,0.23 +2020-04-02 19:00:00,16.12,48.88,21.76,19.99,9.42,0.5,53.8,21.3,15.98,0.68,6.39,1.82 +2020-04-02 20:00:00,19.36,54.83,21.69,19.59,9.6,0.62,46.22,23.92,16.23,0.93,7.95,0.14 +2020-04-02 21:00:00,29.94,67.2,22.82,20.24,9.96,0.66,41.33,25.49,14.53,1.0,8.97,0.06 +2020-04-02 22:00:00,32.06,70.74,20.41,20.35,10.93,0.66,39.61,19.7,8.26,1.04,9.38,0.07 +2020-04-02 23:00:00,30.89,63.98,19.18,20.51,12.92,0.68,37.86,17.84,7.39,1.07,9.08,0.0 +2020-04-03 00:00:00,26.05,56.66,18.42,20.35,12.72,0.63,38.24,17.46,7.62,1.21,9.37,0.0 +2020-04-03 01:00:00,24.11,49.54,18.84,20.3,12.15,0.6,36.89,18.15,8.03,1.27,9.24,4.34 +2020-04-03 02:00:00,23.62,47.36,18.46,21.76,11.05,0.59,37.67,17.45,7.6,1.35,9.34,6.38 +2020-04-03 03:00:00,23.62,49.02,18.81,21.19,11.16,0.58,38.33,18.05,7.82,1.13,9.4,4.33 +2020-04-03 04:00:00,27.08,54.02,17.9,22.1,11.27,0.57,38.11,16.89,7.46,1.02,9.6,0.07 +2020-04-03 05:00:00,33.8,59.8,18.29,22.17,10.93,0.57,34.98,17.12,7.37,1.04,9.68,0.19 +2020-04-03 06:00:00,42.33,72.95,17.87,23.28,12.39,0.62,34.36,16.67,7.4,1.11,9.4,0.0 +2020-04-03 07:00:00,59.8,95.54,19.32,24.92,17.3,0.68,32.57,17.84,7.58,1.34,9.37,0.14 +2020-04-03 08:00:00,71.89,115.05,18.28,25.71,18.04,0.72,38.92,17.65,8.08,1.47,9.7,0.17 +2020-04-03 09:00:00,64.7,110.98,16.67,23.03,16.85,0.67,45.63,16.32,7.48,1.35,8.74,0.56 +2020-04-03 10:00:00,44.82,85.52,15.32,21.49,13.15,0.61,53.96,15.18,7.04,1.1,7.82,0.0 +2020-04-03 11:00:00,26.25,57.31,15.48,21.88,11.79,0.57,60.32,14.99,6.86,0.89,7.14,0.0 +2020-04-03 12:00:00,21.62,52.21,14.96,19.03,11.56,0.54,59.79,14.96,7.0,0.8,6.89,0.14 +2020-04-03 13:00:00,21.28,51.44,15.51,19.74,11.15,0.55,60.41,15.94,7.44,0.85,6.5,0.0 +2020-04-03 14:00:00,19.94,47.67,16.38,19.75,11.13,0.59,61.73,16.75,10.0,0.99,6.47,0.0 +2020-04-03 15:00:00,16.84,41.23,21.18,18.84,10.79,0.65,62.63,21.06,10.08,0.94,6.44,0.09 +2020-04-03 16:00:00,13.53,37.15,19.94,20.1,10.56,0.53,63.22,21.46,12.41,0.97,6.57,0.83 +2020-04-03 17:00:00,14.28,35.96,22.72,20.19,9.71,0.52,62.69,21.22,13.05,1.08,6.59,0.67 +2020-04-03 18:00:00,16.44,38.13,23.64,20.62,8.37,0.5,60.1,22.4,11.83,1.15,6.75,0.12 +2020-04-03 19:00:00,15.76,40.7,24.69,19.09,9.33,0.54,57.93,22.76,13.85,0.98,7.5,0.07 +2020-04-03 20:00:00,17.19,48.77,26.84,21.28,9.99,0.65,45.65,25.64,14.29,1.01,8.84,0.16 +2020-04-03 21:00:00,30.8,72.45,28.17,22.69,11.25,0.75,36.67,27.16,13.04,1.15,10.95,0.07 +2020-04-03 22:00:00,42.31,86.81,28.37,23.96,12.2,0.74,32.17,28.04,11.3,1.36,11.97,0.0 +2020-04-03 23:00:00,54.59,98.22,25.51,23.61,12.99,0.77,30.6,22.71,8.3,1.45,12.2,0.1 +2020-04-04 00:00:00,54.88,98.37,22.95,23.99,13.3,0.75,34.23,21.45,8.51,1.4,11.75,0.62 +2020-04-04 01:00:00,52.01,92.27,21.17,24.52,11.67,0.7,31.86,20.49,8.6,1.34,11.19,1.36 +2020-04-04 02:00:00,46.32,79.35,20.33,24.72,11.83,0.67,29.24,20.88,9.57,1.34,11.38,4.87 +2020-04-04 03:00:00,44.96,75.33,21.65,24.77,11.76,0.7,29.45,21.72,9.86,1.74,11.49,3.53 +2020-04-04 04:00:00,45.9,76.9,21.42,23.41,12.39,0.67,26.83,20.43,9.14,1.61,11.43,3.49 +2020-04-04 05:00:00,43.64,71.82,21.95,23.4,13.35,0.67,23.15,19.88,8.17,1.69,11.73,1.51 +2020-04-04 06:00:00,47.06,78.94,23.37,24.34,13.62,0.71,22.16,20.96,8.5,1.64,11.71,0.28 +2020-04-04 07:00:00,62.96,103.75,25.07,28.38,15.54,0.79,22.43,22.82,9.62,1.71,12.32,0.64 +2020-04-04 08:00:00,82.7,130.12,23.13,28.19,20.36,0.79,31.81,20.86,8.77,1.88,11.8,0.36 +2020-04-04 09:00:00,80.31,133.99,19.64,26.64,20.92,0.72,46.02,18.22,7.84,1.67,10.49,0.26 +2020-04-04 10:00:00,50.54,92.1,17.05,23.16,16.32,0.66,54.2,16.3,7.02,1.37,9.13,0.22 +2020-04-04 11:00:00,33.69,62.22,16.51,22.96,13.67,0.61,58.37,15.55,6.81,1.32,8.21,0.22 +2020-04-04 12:00:00,26.9,55.14,15.86,21.29,12.26,0.59,60.08,15.34,6.91,1.14,7.51,0.09 +2020-04-04 13:00:00,26.52,56.19,15.97,20.66,11.46,0.58,59.21,16.01,7.55,0.89,6.94,0.0 +2020-04-04 14:00:00,21.73,54.52,17.1,20.38,10.56,0.61,59.71,18.25,10.05,0.83,6.43,1.01 +2020-04-04 15:00:00,18.47,53.11,19.07,20.12,10.0,0.47,57.86,19.6,11.69,0.73,6.51,0.06 +2020-04-04 16:00:00,17.26,49.98,20.37,19.8,9.58,0.48,57.61,19.66,12.6,0.71,5.94,0.06 +2020-04-04 17:00:00,17.62,45.98,19.93,19.82,9.0,0.46,57.84,19.73,11.68,0.68,6.23,0.2 +2020-04-04 18:00:00,19.27,46.53,21.27,19.82,9.09,0.47,58.21,18.87,11.09,0.83,6.36,0.2 +2020-04-04 19:00:00,17.39,49.88,23.21,20.27,9.55,0.53,53.28,21.32,12.11,0.72,7.07,0.07 +2020-04-04 20:00:00,22.18,57.43,28.31,22.11,9.98,0.68,40.73,25.94,13.82,0.98,8.64,0.26 +2020-04-04 21:00:00,36.8,81.36,31.85,23.19,11.27,0.89,29.99,29.25,15.37,1.37,10.38,1.06 +2020-04-04 22:00:00,48.79,101.38,35.41,23.05,11.91,1.03,24.45,33.52,14.21,1.63,12.45,0.81 +2020-04-04 23:00:00,61.13,116.58,34.5,24.39,12.88,1.2,21.63,31.54,12.18,2.03,14.3,0.14 +2020-04-05 00:00:00,68.23,126.55,35.17,24.92,14.27,1.09,21.25,33.79,14.0,2.5,21.14,0.07 +2020-04-05 01:00:00,71.22,129.38,30.57,25.82,15.19,0.98,22.66,29.68,12.75,2.45,18.3,0.3 +2020-04-05 02:00:00,69.0,120.98,26.32,25.71,16.11,0.85,25.41,25.88,11.24,2.18,16.69,0.33 +2020-04-05 03:00:00,59.21,102.06,24.53,25.54,15.2,0.84,25.84,24.51,10.93,1.97,15.04,0.13 +2020-04-05 04:00:00,56.04,90.5,24.31,25.61,15.18,0.83,24.33,24.0,10.62,1.86,15.04,0.58 +2020-04-05 05:00:00,55.51,90.61,24.25,24.59,17.44,0.83,23.77,23.75,10.4,2.03,13.85,0.76 +2020-04-05 06:00:00,59.54,98.13,24.05,25.05,16.87,0.88,22.57,22.25,9.19,1.89,12.86,0.17 +2020-04-05 07:00:00,61.14,101.5,27.01,25.47,14.41,0.95,18.33,25.3,10.72,1.96,13.75,0.26 +2020-04-05 08:00:00,63.14,108.71,24.22,27.22,15.99,0.92,26.04,22.94,9.96,2.1,13.93,0.26 +2020-04-05 09:00:00,66.31,124.16,21.92,28.26,18.35,0.89,43.02,20.4,8.77,1.99,12.6,0.15 +2020-04-05 10:00:00,75.46,131.98,19.11,26.93,20.73,0.78,56.78,18.32,7.91,1.9,10.66,0.0 +2020-04-05 11:00:00,61.6,108.24,16.62,26.38,15.85,0.68,61.98,16.4,7.23,1.5,8.46,0.16 +2020-04-05 12:00:00,36.79,73.42,16.05,25.03,13.33,0.65,61.65,16.1,7.61,1.22,7.53,0.57 +2020-04-05 13:00:00,29.96,64.66,17.17,23.67,12.48,0.6,62.53,17.92,9.35,0.99,7.04,0.0 +2020-04-05 14:00:00,29.44,64.08,19.53,23.77,12.36,0.58,62.97,18.66,11.23,0.92,6.7,0.08 +2020-04-05 15:00:00,28.37,59.98,19.1,23.44,11.95,0.57,63.96,18.93,11.48,0.89,6.17,0.24 +2020-04-05 16:00:00,28.85,59.79,19.73,23.61,11.56,0.58,66.2,19.44,11.52,0.87,6.15,0.22 +2020-04-05 17:00:00,26.65,59.8,20.97,22.87,12.24,0.58,66.89,19.18,11.7,0.94,6.53,0.15 +2020-04-05 18:00:00,24.45,58.22,23.14,22.64,12.51,0.62,66.97,19.03,10.6,1.14,7.13,0.27 +2020-04-05 19:00:00,25.71,64.43,23.6,23.88,13.56,0.67,61.86,20.5,11.36,1.32,8.16,1.27 +2020-04-05 20:00:00,33.14,82.64,28.78,23.86,15.36,0.85,52.14,23.11,14.34,1.68,13.58,0.06 +2020-04-05 21:00:00,46.73,103.5,31.19,24.82,21.21,0.99,48.97,26.74,13.97,2.31,15.91,0.06 +2020-04-05 22:00:00,71.52,134.35,36.56,27.01,26.32,1.04,45.0,29.9,13.6,2.41,18.16,0.13 +2020-04-05 23:00:00,95.06,167.51,32.19,27.19,26.3,1.13,38.11,30.08,13.38,2.78,21.82,0.01 +2020-04-06 00:00:00,100.39,171.36,29.57,27.73,22.47,1.13,37.4,26.71,10.18,2.88,23.28,0.07 +2020-04-06 01:00:00,97.81,166.86,30.03,29.24,21.48,1.08,38.02,28.05,10.95,3.36,18.81,0.25 +2020-04-06 02:00:00,99.6,159.88,26.99,30.37,23.44,1.07,35.77,24.41,9.34,3.38,16.93,0.32 +2020-04-06 03:00:00,92.1,152.65,26.0,30.23,24.03,1.03,44.06,22.72,9.46,3.17,18.02,0.19 +2020-04-06 04:00:00,90.54,148.95,26.51,29.01,23.39,1.05,32.01,22.62,9.13,2.95,17.28,0.0 +2020-04-06 05:00:00,91.22,139.41,25.12,29.82,20.64,1.08,33.03,23.29,9.33,3.0,16.77,0.17 +2020-04-06 06:00:00,84.29,134.14,26.96,28.45,17.62,1.08,25.07,24.21,10.16,3.21,17.36,0.14 +2020-04-06 07:00:00,90.04,142.42,28.91,28.48,15.65,1.13,20.89,27.92,13.49,3.27,18.52,0.0 +2020-04-06 08:00:00,90.83,151.91,27.27,30.62,19.1,1.16,24.05,27.49,13.08,3.33,18.58,0.01 +2020-04-06 09:00:00,87.55,159.53,25.7,30.21,21.16,1.04,41.42,24.17,10.37,3.13,16.85,0.05 +2020-04-06 10:00:00,77.32,144.36,21.93,28.47,18.8,0.89,58.19,21.31,9.04,2.8,13.71,0.62 +2020-04-06 11:00:00,62.17,116.89,19.35,27.1,16.11,0.78,64.98,19.6,8.85,2.43,11.46,0.2 +2020-04-06 12:00:00,47.93,96.8,19.71,25.35,12.94,0.63,59.78,20.54,11.66,1.65,9.16,0.12 +2020-04-06 13:00:00,35.22,71.05,21.62,24.03,11.07,0.56,60.81,20.69,12.84,1.19,8.19,0.12 +2020-04-06 14:00:00,29.67,63.89,21.96,24.36,11.02,0.51,57.53,20.29,12.77,1.07,7.91,0.07 +2020-04-06 15:00:00,29.59,66.94,19.87,22.64,11.1,0.48,55.12,19.85,11.08,1.02,6.27,0.21 +2020-04-06 16:00:00,28.53,72.64,22.7,23.04,10.59,0.48,53.91,20.82,9.91,0.84,6.33,0.16 +2020-04-06 17:00:00,26.5,73.15,20.55,22.9,9.76,0.45,55.38,18.46,11.84,0.72,6.99,1.44 +2020-04-06 18:00:00,23.49,74.14,22.66,23.21,9.27,0.5,54.48,15.72,10.29,0.74,7.23,0.06 +2020-04-06 19:00:00,21.23,73.63,21.49,22.73,9.1,0.53,50.97,18.77,8.62,0.88,7.8,0.19 +2020-04-06 20:00:00,25.87,84.08,25.42,23.0,9.73,0.62,43.15,21.2,11.37,0.86,9.38,0.08 +2020-04-06 21:00:00,33.72,98.59,25.93,24.61,10.61,0.72,37.42,26.27,14.02,0.94,10.17,0.0 +2020-04-06 22:00:00,38.39,102.97,25.34,23.94,11.62,0.75,38.79,24.38,14.51,1.12,10.42,0.0 +2020-04-06 23:00:00,33.86,90.77,23.18,24.38,13.36,0.75,37.67,24.92,12.9,0.98,9.73,1.32 +2020-04-07 00:00:00,33.11,82.37,21.56,25.92,11.39,0.72,35.79,25.38,13.42,1.03,9.42,0.87 +2020-04-07 01:00:00,32.94,76.64,21.52,25.18,11.63,0.62,33.86,23.02,10.92,0.98,9.93,0.0 +2020-04-07 02:00:00,32.2,75.69,19.9,25.99,12.4,0.6,31.2,20.51,9.03,1.14,10.09,0.08 +2020-04-07 03:00:00,33.44,71.4,20.81,26.02,17.15,0.6,31.64,19.74,8.42,1.13,10.57,0.0 +2020-04-07 04:00:00,32.16,62.88,19.16,24.95,15.03,0.61,33.08,18.04,7.47,0.89,10.62,0.17 +2020-04-07 05:00:00,31.21,59.08,18.85,25.04,13.35,0.62,30.8,17.88,7.98,0.94,10.8,0.09 +2020-04-07 06:00:00,33.97,59.57,20.87,26.53,12.93,0.65,25.68,19.58,8.39,1.11,11.67,0.0 +2020-04-07 07:00:00,44.36,77.4,22.47,29.46,14.95,0.71,23.55,20.66,8.77,1.25,11.72,0.01 +2020-04-07 08:00:00,63.6,113.82,21.34,32.85,20.03,0.77,28.9,20.15,9.03,1.98,11.82,0.07 +2020-04-07 09:00:00,72.82,140.41,20.56,30.33,27.13,0.76,40.07,19.84,8.79,2.07,11.22,0.27 +2020-04-07 10:00:00,63.47,138.2,17.49,27.08,18.77,0.66,45.44,17.37,7.82,1.53,10.25,0.06 +2020-04-07 11:00:00,39.05,120.01,16.25,25.11,14.79,0.61,45.87,17.12,8.4,1.06,8.59,0.0 +2020-04-07 12:00:00,29.6,133.27,16.92,23.99,13.74,0.58,52.14,17.54,11.76,0.98,10.02,0.0 +2020-04-07 13:00:00,28.87,144.6,25.48,24.9,12.76,0.55,57.86,24.47,12.17,0.97,9.36,0.0 +2020-04-07 14:00:00,26.07,125.35,16.0,26.48,11.84,0.55,60.3,12.42,4.97,0.81,9.38,0.02 +2020-04-07 15:00:00,22.76,92.5,16.14,23.34,10.47,0.49,53.47,13.26,5.4,0.72,8.8,0.44 +2020-04-07 16:00:00,20.4,76.91,13.92,22.17,9.41,0.47,53.6,12.15,5.33,0.59,8.17,0.0 +2020-04-07 17:00:00,20.23,74.04,13.93,23.25,9.53,0.47,52.74,11.86,4.97,0.67,5.36,0.0 +2020-04-07 18:00:00,21.38,77.73,14.86,23.05,9.3,0.47,52.1,12.55,5.45,0.57,5.7,0.0 +2020-04-07 19:00:00,19.89,81.55,15.09,23.36,10.08,0.5,50.73,12.5,4.87,0.72,5.92,0.13 +2020-04-07 20:00:00,21.49,86.3,15.69,24.01,10.23,0.59,48.06,12.98,5.13,0.79,7.09,0.18 +2020-04-07 21:00:00,23.97,86.78,26.55,24.25,11.51,0.6,45.91,15.84,5.86,0.81,7.15,0.16 +2020-04-07 22:00:00,22.94,88.93,24.81,24.38,12.67,0.57,45.64,13.94,15.97,0.81,7.88,0.57 +2020-04-07 23:00:00,24.99,111.04,22.32,25.0,11.99,0.59,45.27,18.29,13.6,0.75,7.64,0.0 +2020-04-08 00:00:00,26.1,102.79,17.79,25.04,11.98,0.57,38.88,17.94,8.03,0.95,8.38,0.0 +2020-04-08 01:00:00,27.98,94.03,19.81,25.45,11.68,0.59,31.58,18.52,7.64,1.04,10.58,0.0 +2020-04-08 02:00:00,29.52,92.0,21.05,26.61,12.7,0.56,27.84,19.27,7.79,1.2,17.76,0.0 +2020-04-08 03:00:00,35.85,90.81,19.63,26.71,15.15,0.55,29.6,18.57,8.44,1.31,11.65,0.0 +2020-04-08 04:00:00,43.56,92.21,18.79,27.09,17.91,0.57,31.69,17.3,7.33,1.16,10.97,0.0 +2020-04-08 05:00:00,48.23,86.51,17.24,26.4,18.42,0.54,34.43,16.23,7.16,1.28,10.11,0.2 +2020-04-08 06:00:00,42.61,75.66,16.46,25.22,16.26,0.55,35.27,15.55,7.06,1.42,8.97,0.08 +2020-04-08 07:00:00,35.06,66.65,17.48,26.34,15.42,0.57,34.65,16.48,7.44,1.7,8.79,0.09 +2020-04-08 08:00:00,37.57,74.04,18.42,27.02,17.77,0.59,35.32,17.29,7.77,1.7,8.83,0.0 +2020-04-08 09:00:00,39.67,88.05,17.32,25.61,16.54,0.58,43.61,16.51,7.41,1.7,8.38,0.06 +2020-04-08 10:00:00,33.17,85.88,16.27,21.89,13.85,0.55,50.68,15.8,7.1,0.88,7.61,0.0 +2020-04-08 11:00:00,27.4,80.52,15.69,21.07,12.52,0.55,54.59,14.73,6.92,0.82,7.3,0.0 +2020-04-08 12:00:00,25.42,80.27,18.77,20.89,12.1,0.54,57.45,17.97,11.42,0.82,6.63,0.19 +2020-04-08 13:00:00,24.77,78.74,20.12,21.01,10.91,0.51,58.04,13.48,16.09,0.57,6.27,0.12 +2020-04-08 14:00:00,24.24,74.47,22.5,21.87,10.91,0.49,57.95,14.16,12.38,0.56,6.04,0.0 +2020-04-08 15:00:00,24.14,73.38,18.36,22.21,9.99,0.48,58.47,17.93,10.94,0.64,5.12,0.0 +2020-04-08 16:00:00,21.29,67.72,13.41,21.69,9.42,0.49,58.78,11.87,5.46,0.56,5.06,0.0 +2020-04-08 17:00:00,18.7,60.69,13.36,21.27,9.54,0.48,60.52,11.81,5.13,0.62,5.2,0.0 +2020-04-08 18:00:00,18.81,64.23,13.89,21.35,9.77,0.47,59.98,12.13,5.19,0.49,5.46,0.0 +2020-04-08 19:00:00,18.09,66.11,15.44,20.63,9.51,0.48,57.22,12.81,5.17,0.62,5.81,0.02 +2020-04-08 20:00:00,20.5,70.03,18.69,20.7,10.33,0.59,51.21,15.16,5.35,0.82,6.7,0.41 +2020-04-08 21:00:00,26.66,77.23,21.23,21.57,11.15,0.69,43.78,16.51,5.51,0.8,8.49,0.14 +2020-04-08 22:00:00,32.09,78.65,29.53,21.92,12.0,0.7,42.49,21.37,14.77,0.98,8.99,0.0 +2020-04-08 23:00:00,31.28,76.22,24.27,22.39,12.6,0.66,45.17,26.8,13.56,1.12,8.73,0.0 +2020-04-09 00:00:00,29.68,69.53,18.41,21.9,12.98,0.6,45.52,18.4,8.05,1.14,8.49,0.0 +2020-04-09 01:00:00,28.25,66.87,18.38,22.07,13.31,0.58,43.33,17.53,7.65,1.41,8.33,0.11 +2020-04-09 02:00:00,31.65,65.6,18.67,23.01,14.18,0.57,38.87,17.53,7.38,0.95,7.97,0.0 +2020-04-09 03:00:00,31.19,64.69,21.47,21.87,17.49,0.56,37.37,19.51,7.91,1.02,7.97,0.2 +2020-04-09 04:00:00,31.36,65.2,21.61,22.22,20.06,0.58,36.4,19.06,7.5,1.17,8.39,0.11 +2020-04-09 05:00:00,36.55,67.53,21.64,22.41,18.96,0.64,33.36,19.35,7.5,1.12,8.78,0.0 +2020-04-09 06:00:00,40.21,69.16,20.89,22.76,15.99,0.62,30.91,18.73,7.63,1.05,8.98,0.0 +2020-04-09 07:00:00,44.0,78.65,21.94,24.68,15.63,0.69,27.64,20.09,8.01,1.29,8.7,0.0 +2020-04-09 08:00:00,57.88,107.67,20.29,27.63,23.33,0.78,34.42,19.03,7.87,1.45,9.1,0.0 +2020-04-09 09:00:00,74.51,136.16,18.33,27.71,23.62,0.77,48.23,17.61,7.49,1.63,8.03,0.12 +2020-04-09 10:00:00,67.35,126.63,16.65,25.34,19.04,0.69,58.82,15.9,7.31,1.37,7.09,0.16 +2020-04-09 11:00:00,49.26,97.33,15.01,23.39,15.72,0.63,65.08,14.85,6.7,1.23,6.08,0.0 +2020-04-09 12:00:00,35.09,75.19,14.51,22.2,13.27,0.6,65.28,17.48,9.42,0.93,5.44,0.0 +2020-04-09 13:00:00,26.71,64.6,20.77,23.22,11.37,0.57,65.66,12.17,14.15,0.84,4.96,0.0 +2020-04-09 14:00:00,23.13,56.78,22.26,22.72,9.91,0.54,66.93,12.82,13.76,0.75,4.7,0.0 +2020-04-09 15:00:00,20.88,50.29,24.44,23.21,9.49,0.53,68.71,10.84,9.94,0.69,3.87,0.0 +2020-04-09 16:00:00,20.86,50.52,14.03,23.42,9.33,0.54,67.37,11.59,4.47,0.7,4.41,0.0 +2020-04-09 17:00:00,20.85,50.93,14.22,23.23,9.61,0.54,66.03,11.93,5.01,0.66,4.38,0.27 +2020-04-09 18:00:00,20.42,51.06,14.48,23.2,9.47,0.52,65.88,12.15,5.09,0.55,4.84,0.36 +2020-04-09 19:00:00,18.78,54.74,16.85,22.79,10.06,0.58,59.11,13.49,5.08,0.71,5.89,0.07 +2020-04-09 20:00:00,22.57,65.66,23.69,23.58,10.89,0.72,46.86,18.08,5.62,1.12,7.43,0.09 +2020-04-09 21:00:00,34.79,84.95,38.35,25.08,11.71,0.94,35.44,32.03,16.07,1.45,10.12,0.12 +2020-04-09 22:00:00,45.97,100.61,41.23,26.62,12.32,1.02,27.0,35.68,14.17,1.57,12.72,0.0 +2020-04-09 23:00:00,55.07,111.38,34.64,27.97,13.08,1.08,25.97,29.91,10.09,1.87,13.8,0.0 +2020-04-10 00:00:00,64.79,118.39,33.47,28.61,13.12,1.03,22.93,28.35,9.54,1.91,14.76,0.02 +2020-04-10 01:00:00,68.01,122.75,33.0,28.79,15.71,0.96,18.11,28.4,10.06,2.1,14.48,0.22 +2020-04-10 02:00:00,74.94,129.67,29.1,29.82,18.07,0.89,21.06,26.27,10.0,1.99,13.6,0.07 +2020-04-10 03:00:00,78.19,133.51,28.25,28.75,17.65,0.9,20.54,26.97,11.31,2.11,13.54,0.0 +2020-04-10 04:00:00,75.49,127.29,27.92,28.85,17.71,0.88,17.54,25.45,10.2,2.24,15.3,0.0 +2020-04-10 05:00:00,71.66,123.89,28.75,29.07,16.72,0.85,15.48,26.84,10.72,2.39,15.32,0.06 +2020-04-10 06:00:00,74.87,127.35,30.1,29.89,16.62,0.87,13.17,26.87,10.4,2.7,14.78,0.06 +2020-04-10 07:00:00,82.99,139.78,30.46,31.98,17.67,0.96,13.97,27.99,11.3,2.92,15.43,0.0 +2020-04-10 08:00:00,97.63,170.83,28.42,35.59,25.61,1.04,22.93,26.43,10.78,2.86,14.96,0.0 +2020-04-10 09:00:00,113.51,204.08,26.07,35.14,30.11,0.96,40.76,23.9,9.32,2.9,12.99,0.14 +2020-04-10 10:00:00,95.5,173.73,22.64,31.64,28.71,0.81,62.93,20.87,8.18,2.47,11.16,0.0 +2020-04-10 11:00:00,60.18,119.77,19.35,28.33,22.07,0.69,71.62,18.92,7.94,1.7,9.15,0.0 +2020-04-10 12:00:00,38.61,83.96,21.12,25.99,16.54,0.62,74.47,17.99,10.63,1.28,7.53,0.0 +2020-04-10 13:00:00,31.81,69.35,21.19,25.56,13.77,0.54,75.41,17.16,14.88,1.14,6.93,0.1 +2020-04-10 14:00:00,25.89,60.84,26.44,24.7,11.92,0.52,74.28,25.8,13.36,0.91,6.05,0.0 +2020-04-10 15:00:00,21.45,53.67,14.7,24.2,10.4,0.5,72.59,12.19,4.73,0.69,5.75,0.32 +2020-04-10 16:00:00,21.25,52.51,14.71,23.61,10.4,0.5,68.76,12.18,5.1,0.74,5.52,0.02 +2020-04-10 17:00:00,22.92,53.68,14.25,23.15,10.24,0.51,66.6,12.06,5.03,0.66,5.48,0.13 +2020-04-10 18:00:00,20.49,55.34,14.71,22.69,10.46,0.48,63.43,11.96,4.62,0.71,6.24,0.44 +2020-04-10 19:00:00,21.11,69.52,19.41,22.82,10.47,0.61,49.9,15.11,4.9,0.76,7.24,0.28 +2020-04-10 20:00:00,36.74,102.11,29.54,24.47,11.86,0.84,32.46,21.75,6.17,1.05,9.8,0.38 +2020-04-10 21:00:00,53.19,129.82,44.77,25.98,13.76,1.05,22.14,28.47,8.01,1.71,14.02,0.32 +2020-04-10 22:00:00,65.37,141.24,43.84,27.37,15.71,1.2,16.04,37.74,18.08,2.44,16.47,0.46 +2020-04-10 23:00:00,67.57,147.32,48.6,28.15,16.5,1.32,11.5,39.54,20.0,2.67,18.25,0.43 +2020-04-11 00:00:00,67.26,139.56,39.35,29.14,16.81,1.32,11.26,37.84,15.04,2.64,18.76,0.19 +2020-04-11 01:00:00,70.43,140.91,37.45,30.38,17.72,1.2,12.11,37.08,16.08,2.67,20.24,0.2 +2020-04-11 02:00:00,72.19,140.04,34.54,29.53,20.99,1.13,13.52,34.46,15.43,2.97,19.79,0.19 +2020-04-11 03:00:00,73.3,133.65,33.15,28.13,20.34,1.08,16.07,33.85,16.3,2.96,19.19,0.05 +2020-04-11 04:00:00,71.45,132.17,31.91,28.4,22.15,1.04,17.38,32.42,14.71,2.69,18.6,0.0 +2020-04-11 05:00:00,73.97,130.39,29.97,28.66,24.37,1.04,17.27,30.37,13.61,2.75,18.14,0.01 +2020-04-11 06:00:00,78.54,132.69,28.91,29.44,24.15,1.03,18.93,28.29,12.26,3.0,16.22,0.11 +2020-04-11 07:00:00,79.23,135.95,29.66,31.09,23.15,1.12,21.58,30.05,13.98,2.75,15.17,0.08 +2020-04-11 08:00:00,79.88,145.87,28.0,31.98,25.98,1.13,23.76,27.71,12.28,2.92,14.9,0.0 +2020-04-11 09:00:00,76.9,150.37,26.34,31.49,30.71,0.99,46.5,25.55,10.5,2.59,12.16,0.01 +2020-04-11 10:00:00,68.79,139.98,22.78,30.22,24.94,0.85,64.44,22.23,9.19,2.24,9.94,0.15 +2020-04-11 11:00:00,57.01,122.96,21.71,29.1,21.19,0.74,78.22,18.6,10.57,1.9,8.37,0.06 +2020-04-11 12:00:00,44.21,101.52,23.4,27.36,15.88,0.62,76.87,20.22,13.6,1.48,6.86,0.0 +2020-04-11 13:00:00,35.93,86.14,15.12,26.41,14.9,0.58,83.92,13.33,5.72,1.22,6.22,0.0 +2020-04-11 14:00:00,29.7,81.99,14.87,26.79,13.94,0.53,87.49,12.84,5.04,1.15,5.98,0.0 +2020-04-11 15:00:00,31.05,87.44,14.06,26.68,13.4,0.54,88.14,12.22,4.89,1.01,5.67,0.0 +2020-04-11 16:00:00,32.36,92.74,14.21,27.69,13.22,0.56,84.73,12.22,5.14,0.86,5.45,0.0 +2020-04-11 17:00:00,30.76,93.23,14.73,26.64,13.8,0.56,80.36,12.1,4.86,0.94,4.83,0.0 +2020-04-11 18:00:00,27.32,95.8,15.21,26.66,13.15,0.55,75.38,11.96,4.78,0.82,5.25,0.0 +2020-04-11 19:00:00,29.11,100.04,17.17,26.52,13.33,0.59,67.52,13.44,4.8,0.99,5.96,0.0 +2020-04-11 20:00:00,30.54,108.94,18.93,26.39,13.39,0.63,56.03,14.48,4.73,1.02,7.22,0.0 +2020-04-11 21:00:00,38.48,120.6,19.43,26.52,14.16,0.67,50.25,15.12,5.02,1.16,7.7,0.0 +2020-04-11 22:00:00,37.26,116.69,18.79,27.19,14.37,0.7,48.68,14.84,5.22,1.15,7.86,0.0 +2020-04-11 23:00:00,36.98,104.8,17.72,27.47,15.15,0.67,47.88,14.4,5.16,1.23,7.87,0.01 +2020-04-12 00:00:00,36.21,94.79,16.35,27.92,14.93,0.64,44.81,13.58,5.02,1.05,7.37,0.0 +2020-04-12 01:00:00,36.78,86.54,16.0,28.23,15.02,0.64,43.37,13.45,5.15,1.14,6.72,0.0 +2020-04-12 02:00:00,35.97,80.54,15.48,28.92,16.22,0.61,41.81,13.19,5.4,1.22,6.47,0.0 +2020-04-12 03:00:00,36.37,75.58,16.45,26.74,16.07,0.62,42.89,14.02,5.81,1.06,6.54,0.0 +2020-04-12 04:00:00,34.17,69.89,15.8,26.5,16.46,0.63,42.34,13.42,5.32,0.96,6.85,0.0 +2020-04-12 05:00:00,33.95,65.68,16.67,25.86,15.86,0.61,42.33,14.0,5.72,1.07,6.92,0.0 +2020-04-12 06:00:00,33.46,68.29,18.33,26.73,16.32,0.64,36.4,15.16,5.74,1.25,7.78,0.0 +2020-04-12 07:00:00,42.91,81.05,19.73,29.13,18.87,0.69,31.98,16.4,6.07,1.51,7.71,0.0 +2020-04-12 08:00:00,62.11,114.26,19.62,32.91,25.01,0.76,35.21,16.94,6.45,1.89,7.95,0.0 +2020-04-12 09:00:00,77.87,142.74,18.21,32.92,24.73,0.76,46.22,15.69,6.32,1.89,7.5,0.0 +2020-04-12 10:00:00,70.09,128.97,16.41,30.29,21.17,0.73,61.11,14.14,5.73,1.68,6.59,0.0 +2020-04-12 11:00:00,51.59,105.41,14.51,27.97,17.87,0.65,68.68,12.73,5.53,1.4,6.06,0.0 +2020-04-12 12:00:00,36.09,89.28,13.68,26.79,15.72,0.62,71.2,11.91,5.07,1.07,5.96,0.0 +2020-04-12 13:00:00,27.61,82.04,13.32,25.9,14.29,0.57,71.16,11.62,4.96,0.9,5.22,0.0 +2020-04-12 14:00:00,25.35,83.65,12.97,26.11,12.91,0.52,69.93,11.43,5.0,0.96,5.04,0.0 +2020-04-12 15:00:00,26.31,81.0,12.8,24.89,12.01,0.54,69.62,11.53,4.8,0.87,4.98,0.0 +2020-04-12 16:00:00,24.59,80.42,13.09,24.6,10.97,0.55,67.97,12.02,5.27,0.72,4.69,0.0 +2020-04-12 17:00:00,22.64,76.69,12.78,24.02,10.85,0.6,65.45,11.56,4.97,0.68,4.71,0.0 +2020-04-12 18:00:00,18.79,69.34,14.17,23.87,10.74,0.56,64.38,11.95,4.83,0.67,5.12,0.0 +2020-04-12 19:00:00,20.21,74.26,15.7,23.75,11.48,0.59,59.62,12.9,4.98,0.75,5.77,0.0 +2020-04-12 20:00:00,24.05,90.04,22.06,24.54,12.71,0.78,43.86,17.1,5.14,1.07,7.44,0.0 +2020-04-12 21:00:00,40.52,117.52,27.07,25.3,13.68,0.91,33.17,20.79,5.81,1.32,9.32,0.0 +2020-04-12 22:00:00,51.36,130.84,30.33,26.42,15.51,0.94,25.8,22.87,6.08,1.7,10.74,0.0 +2020-04-12 23:00:00,56.57,135.96,30.65,27.34,17.29,0.87,24.2,23.44,6.43,1.81,11.41,0.0 +2020-04-13 00:00:00,58.76,136.98,28.21,28.24,19.17,0.84,24.98,22.24,6.62,1.94,11.1,0.0 +2020-04-13 01:00:00,61.36,137.14,25.19,28.54,19.51,0.83,21.95,21.2,7.26,1.89,10.78,0.0 +2020-04-13 02:00:00,63.39,134.48,25.24,29.39,18.82,0.83,16.46,20.83,7.48,1.8,11.18,0.0 +2020-04-13 03:00:00,66.38,132.05,27.73,28.67,17.97,0.86,14.6,23.23,8.39,2.05,11.82,0.03 +2020-04-13 04:00:00,70.5,140.33,28.51,29.2,20.65,0.88,13.33,23.75,8.6,2.09,12.08,0.0 +2020-04-13 05:00:00,78.59,145.49,28.48,29.5,21.43,0.9,14.39,24.49,9.09,2.15,12.14,0.06 +2020-04-13 06:00:00,88.15,162.36,29.5,31.14,22.87,0.92,13.02,25.5,9.52,2.29,13.25,0.0 +2020-04-13 07:00:00,104.47,196.77,29.6,34.14,29.77,1.01,14.63,26.82,10.73,2.66,13.29,0.0 +2020-04-13 08:00:00,126.78,236.92,27.49,36.16,43.99,1.13,27.91,24.56,9.42,3.0,12.1,0.02 +2020-04-13 09:00:00,129.44,246.21,24.26,34.15,40.58,1.01,47.46,21.21,7.97,3.06,10.74,0.0 +2020-04-13 10:00:00,99.9,192.91,20.11,30.98,28.77,0.87,65.78,17.86,6.91,2.33,8.37,0.0 +2020-04-13 11:00:00,63.31,130.45,17.11,28.53,21.71,0.74,74.14,15.18,5.79,1.8,7.2,0.0 +2020-04-13 12:00:00,45.62,101.63,15.35,26.61,18.02,0.69,70.82,13.42,5.34,1.49,6.4,0.0 +2020-04-13 13:00:00,31.37,85.31,13.66,25.36,15.84,0.64,69.44,12.24,5.18,1.26,5.82,0.0 +2020-04-13 14:00:00,27.23,80.98,13.47,24.78,13.79,0.58,67.44,12.07,5.12,1.14,5.77,0.0 +2020-04-13 15:00:00,22.73,76.96,13.03,24.42,12.45,0.53,67.75,12.04,5.13,1.1,5.53,0.0 +2020-04-13 16:00:00,25.1,84.99,12.94,24.57,12.05,0.55,69.94,12.36,5.67,0.99,5.07,0.0 +2020-04-13 17:00:00,26.32,88.55,13.03,23.99,12.87,0.57,70.84,12.13,5.22,0.91,4.84,0.0 +2020-04-13 18:00:00,25.81,87.64,14.46,23.96,12.2,0.57,69.28,12.57,5.04,0.77,5.16,0.0 +2020-04-13 19:00:00,26.84,90.1,17.52,23.8,12.7,0.66,58.42,14.1,5.08,0.9,6.34,0.0 +2020-04-13 20:00:00,29.74,110.06,26.28,24.63,14.19,0.86,37.24,19.88,5.75,1.24,9.53,0.0 +2020-04-13 21:00:00,50.65,152.08,35.15,25.59,14.83,1.15,23.06,26.83,7.14,1.52,11.61,0.0 +2020-04-13 22:00:00,62.02,164.78,38.71,27.0,15.62,1.19,16.67,31.31,9.68,2.1,14.93,0.0 +2020-04-13 23:00:00,69.92,167.34,36.48,27.4,16.91,1.13,16.22,30.05,9.75,2.23,15.9,0.0 +2020-04-14 00:00:00,71.05,163.97,30.3,27.88,18.66,1.05,20.19,25.08,8.65,2.05,14.09,0.0 +2020-04-14 01:00:00,73.8,159.58,27.88,28.38,19.38,0.97,20.11,23.24,7.96,2.26,13.12,0.0 +2020-04-14 02:00:00,70.8,150.47,26.91,29.46,19.58,0.94,18.58,23.82,8.78,2.02,13.2,0.0 +2020-04-14 03:00:00,64.33,139.01,25.82,28.61,18.44,0.92,18.9,23.82,9.48,1.99,13.02,0.0 +2020-04-14 04:00:00,59.48,124.02,26.85,28.25,19.6,0.91,15.93,23.94,9.61,2.03,14.06,0.0 +2020-04-14 05:00:00,58.89,117.51,28.19,28.3,19.98,0.91,15.36,25.08,10.26,2.49,14.31,0.0 +2020-04-14 06:00:00,61.21,117.0,29.33,28.77,19.09,0.95,16.38,26.63,11.33,2.68,13.43,0.0 +2020-04-14 07:00:00,63.76,126.37,30.12,29.83,19.77,1.01,13.25,29.46,13.79,2.58,20.63,0.0 +2020-04-14 08:00:00,74.82,153.13,31.17,31.4,22.87,1.08,16.55,28.85,12.58,2.77,19.24,0.06 +2020-04-14 09:00:00,84.88,175.87,28.45,31.78,24.23,1.07,33.46,25.01,9.48,2.89,14.75,0.0 +2020-04-14 10:00:00,78.74,169.91,23.44,30.06,21.71,0.97,52.87,20.51,7.51,2.38,14.43,0.0 +2020-04-14 11:00:00,59.28,129.34,19.46,27.92,18.85,0.86,65.24,17.45,6.88,1.91,12.5,0.0 +2020-04-14 12:00:00,40.93,97.58,17.36,27.81,17.39,0.87,70.92,15.64,6.17,1.55,9.84,0.0 +2020-04-14 13:00:00,35.4,99.87,15.59,27.64,15.44,0.72,74.55,14.43,5.81,1.38,9.43,0.0 +2020-04-14 14:00:00,32.14,94.63,14.7,27.5,14.41,0.68,79.85,13.97,5.79,1.23,7.55,0.0 +2020-04-14 15:00:00,33.22,102.67,13.24,27.19,12.13,0.62,79.68,13.92,6.47,1.11,6.37,0.0 +2020-04-14 16:00:00,35.82,117.19,13.48,27.43,11.79,0.58,81.72,14.93,7.2,0.92,6.04,0.0 +2020-04-14 17:00:00,35.09,124.88,13.0,26.86,12.31,0.58,78.49,14.45,7.1,0.98,6.02,0.0 +2020-04-14 18:00:00,33.68,125.73,17.26,26.17,12.37,0.62,63.63,17.66,7.7,0.95,7.17,0.0 +2020-04-14 19:00:00,38.7,142.39,26.45,27.83,14.22,0.96,42.75,23.49,8.58,1.69,10.3,0.0 +2020-04-14 20:00:00,55.84,185.05,36.28,29.18,14.54,1.15,28.56,30.21,9.68,2.29,16.81,0.0 +2020-04-14 21:00:00,74.1,207.74,41.35,29.93,16.11,1.32,24.55,33.45,10.34,2.69,18.94,0.0 +2020-04-14 22:00:00,81.61,230.38,41.89,30.57,17.15,1.33,21.68,34.59,10.92,3.12,19.82,0.01 +2020-04-14 23:00:00,79.81,218.57,38.61,31.39,17.18,1.28,24.48,31.53,9.79,3.12,19.79,0.14 +2020-04-15 00:00:00,71.53,204.51,34.59,31.49,16.0,1.13,27.31,28.32,9.0,2.79,16.99,0.24 +2020-04-15 01:00:00,68.26,199.82,30.86,31.44,15.63,1.02,21.32,25.75,8.79,2.46,19.9,0.07 +2020-04-15 02:00:00,64.56,196.71,27.96,32.29,15.54,0.92,19.0,23.79,8.43,2.61,15.58,0.08 +2020-04-15 03:00:00,60.95,191.03,26.37,29.37,15.45,0.85,21.44,22.94,8.72,2.35,14.05,0.01 +2020-04-15 04:00:00,55.12,178.02,26.01,28.83,17.49,0.84,26.66,22.64,8.32,2.36,15.82,0.0 +2020-04-15 05:00:00,55.75,171.78,24.45,28.77,18.16,0.86,25.46,20.89,7.81,2.71,14.74,0.0 +2020-04-15 06:00:00,58.8,174.54,23.66,29.42,18.38,0.91,27.59,20.69,7.92,3.02,13.6,0.0 +2020-04-15 07:00:00,62.07,185.58,25.16,30.85,18.09,0.97,21.19,22.09,8.33,3.24,13.38,0.0 +2020-04-15 08:00:00,69.66,211.46,24.53,32.05,17.94,1.05,24.74,21.95,8.51,3.73,12.38,0.0 +2020-04-15 09:00:00,76.55,239.3,22.81,32.73,18.49,1.04,35.8,20.37,7.98,3.66,10.32,0.0 +2020-04-15 10:00:00,84.69,263.74,21.3,32.92,18.95,1.01,53.69,18.69,7.14,3.54,12.63,0.04 +2020-04-15 11:00:00,84.34,270.27,18.28,31.04,18.43,0.87,69.74,16.5,6.22,3.03,10.28,0.0 +2020-04-15 12:00:00,67.51,256.6,16.11,29.29,16.29,0.78,72.11,15.15,6.1,2.53,7.5,0.01 +2020-04-15 13:00:00,53.95,222.94,14.19,27.54,13.28,0.68,68.52,14.95,6.83,1.96,7.05,0.06 +2020-04-15 14:00:00,42.56,196.78,12.61,26.03,11.86,0.65,61.49,14.42,7.25,1.57,6.34,0.0 +2020-04-15 15:00:00,37.07,163.79,12.84,25.11,9.54,0.63,58.98,15.39,7.91,1.3,6.25,0.0 +2020-04-15 16:00:00,32.81,144.03,12.63,24.24,9.0,0.72,57.48,16.25,8.93,1.24,5.67,0.0 +2020-04-15 17:00:00,29.95,135.82,12.58,23.21,9.2,0.5,57.39,17.48,9.8,1.01,5.83,0.0 +2020-04-15 18:00:00,27.37,123.63,14.39,22.65,9.63,0.64,55.66,19.07,10.44,0.95,6.05,0.0 +2020-04-15 19:00:00,28.01,119.88,21.22,22.46,8.89,0.96,44.07,23.43,11.09,0.9,7.64,0.0 +2020-04-15 20:00:00,36.04,132.77,34.26,24.01,11.43,1.02,26.28,31.55,12.39,1.72,10.27,0.0 +2020-04-15 21:00:00,61.94,187.41,41.84,26.89,13.6,1.22,18.75,42.62,18.72,1.86,13.54,0.0 +2020-04-15 22:00:00,81.97,199.24,46.16,28.73,16.45,1.5,12.73,50.9,24.93,2.86,17.77,0.0 +2020-04-15 23:00:00,88.01,213.83,44.42,29.29,19.62,1.53,9.9,51.29,27.3,3.26,21.69,0.0 +2020-04-16 00:00:00,92.75,212.53,43.28,31.56,20.58,1.51,11.01,52.05,29.18,3.69,22.5,0.0 +2020-04-16 01:00:00,95.19,221.31,41.51,31.6,19.43,1.35,10.1,48.44,26.54,3.59,27.68,0.01 +2020-04-16 02:00:00,89.79,222.73,38.69,34.13,20.19,1.26,11.4,41.74,22.06,3.52,25.93,0.04 +2020-04-16 03:00:00,91.42,218.46,33.79,32.94,22.49,1.04,15.46,32.76,14.14,3.26,21.46,0.07 +2020-04-16 04:00:00,94.42,217.95,31.17,32.51,23.01,0.98,18.8,29.82,12.62,2.83,16.94,0.0 +2020-04-16 05:00:00,90.2,204.29,26.84,31.71,21.41,0.89,19.56,25.18,11.01,2.51,15.19,0.0 +2020-04-16 06:00:00,80.65,195.76,25.74,32.03,21.38,0.95,19.71,24.69,10.41,2.59,14.29,0.0 +2020-04-16 07:00:00,80.11,202.38,26.53,33.48,22.13,1.06,16.57,25.4,11.17,2.66,14.18,0.06 +2020-04-16 08:00:00,92.49,234.42,26.26,35.5,28.16,1.17,29.62,25.65,11.34,2.95,13.58,0.1 +2020-04-16 09:00:00,111.9,281.22,26.94,37.69,33.41,1.25,43.51,23.94,9.99,3.56,12.98,0.0 +2020-04-16 10:00:00,131.56,316.86,25.49,37.93,33.93,1.21,67.27,23.13,8.73,3.55,12.02,0.0 +2020-04-16 11:00:00,125.82,306.48,23.05,37.08,32.02,1.1,85.64,20.78,7.41,3.33,12.67,0.0 +2020-04-16 12:00:00,109.63,279.08,20.07,35.78,30.37,0.99,88.33,18.69,7.02,3.07,11.05,0.0 +2020-04-16 13:00:00,84.13,234.63,15.84,32.5,21.46,0.77,82.06,16.18,7.33,2.5,8.74,0.0 +2020-04-16 14:00:00,49.19,155.46,13.22,29.19,12.81,0.69,67.33,15.56,7.72,1.65,7.05,0.0 +2020-04-16 15:00:00,30.49,129.47,12.82,27.77,9.67,0.67,64.38,15.95,8.62,1.27,6.55,0.0 +2020-04-16 16:00:00,22.69,134.13,12.52,27.01,8.44,0.63,63.64,16.68,9.34,1.19,6.34,0.0 +2020-04-16 17:00:00,19.24,115.2,12.11,25.26,8.44,0.58,58.44,17.4,10.11,1.25,6.56,0.0 +2020-04-16 18:00:00,17.35,87.15,14.01,23.65,8.11,0.61,57.52,18.78,10.94,0.81,6.88,0.0 +2020-04-16 19:00:00,19.9,84.65,19.22,23.41,9.58,0.71,48.17,21.96,10.87,0.94,8.55,0.0 +2020-04-16 20:00:00,25.16,107.9,27.77,23.78,12.55,0.75,33.78,25.59,10.04,1.43,12.23,0.0 +2020-04-16 21:00:00,38.75,133.93,29.6,23.74,15.51,0.82,28.67,26.51,9.44,1.69,14.8,0.0 +2020-04-16 22:00:00,43.01,146.43,28.06,24.08,15.73,0.81,30.01,25.24,9.45,1.76,15.5,0.0 +2020-04-16 23:00:00,39.42,145.55,25.63,24.21,15.27,0.78,33.84,23.71,9.11,2.07,16.29,0.0 +2020-04-17 00:00:00,36.35,136.35,20.47,23.96,15.52,0.68,42.45,19.94,8.48,1.68,15.94,0.0 +2020-04-17 01:00:00,34.88,122.62,18.98,24.96,16.7,0.67,43.64,18.47,8.02,1.34,10.28,0.0 +2020-04-17 02:00:00,36.46,120.13,18.01,25.92,16.02,0.61,41.3,17.6,7.65,1.39,8.58,0.0 +2020-04-17 03:00:00,32.04,102.67,16.99,23.5,16.9,0.59,44.48,16.89,7.89,1.31,9.09,0.0 +2020-04-17 04:00:00,25.51,86.14,17.58,23.89,17.41,0.55,44.34,16.63,7.08,1.21,9.21,0.0 +2020-04-17 05:00:00,27.43,95.3,15.29,24.66,19.09,0.59,48.5,15.38,7.1,1.29,8.6,0.0 +2020-04-17 06:00:00,30.76,112.3,14.06,25.22,16.51,0.62,48.52,14.07,6.59,1.18,7.75,0.0 +2020-04-17 07:00:00,24.9,92.2,15.0,25.51,15.29,0.61,42.21,14.78,6.72,1.09,7.82,0.0 +2020-04-17 08:00:00,27.85,96.52,15.66,26.28,15.63,0.66,43.11,15.18,6.79,1.13,7.83,0.0 +2020-04-17 09:00:00,29.28,110.73,15.09,26.59,14.63,0.67,45.95,14.82,6.7,1.12,7.6,0.0 +2020-04-17 10:00:00,29.87,111.9,14.97,26.61,14.82,0.68,47.41,14.99,6.94,1.06,7.94,0.0 +2020-04-17 11:00:00,30.18,100.63,14.07,26.82,14.35,0.65,53.31,14.44,6.73,0.98,6.67,0.0 +2020-04-17 12:00:00,27.75,87.4,12.99,27.14,14.54,0.62,58.48,14.15,6.99,0.92,6.38,0.0 +2020-04-17 13:00:00,25.58,75.67,11.83,26.97,13.33,0.58,61.28,13.83,7.29,0.73,6.06,0.0 +2020-04-17 14:00:00,21.32,64.18,11.79,26.9,11.27,0.61,65.56,14.66,7.93,0.89,5.74,0.0 +2020-04-17 15:00:00,19.07,55.57,12.31,26.84,10.79,0.69,70.35,15.97,8.6,0.91,5.59,0.0 +2020-04-17 16:00:00,23.1,57.83,13.02,26.98,10.25,0.65,73.96,17.85,10.26,0.8,5.59,0.0 +2020-04-17 17:00:00,20.29,60.14,13.33,27.26,10.32,0.58,75.88,18.45,10.51,0.83,5.33,0.0 +2020-04-17 18:00:00,19.89,66.79,15.05,26.75,10.26,0.68,70.27,19.65,10.82,0.82,5.99,0.0 +2020-04-17 19:00:00,23.67,94.06,16.8,26.02,11.06,0.71,63.54,20.51,10.83,0.71,6.5,0.0 +2020-04-17 20:00:00,23.24,78.26,18.72,26.08,11.47,0.64,54.06,20.8,9.95,0.89,7.65,0.0 +2020-04-17 21:00:00,23.88,76.74,20.24,26.46,12.66,0.63,49.58,20.69,9.17,1.07,7.68,0.0 +2020-04-17 22:00:00,24.63,69.68,19.61,26.84,15.57,0.66,47.83,19.37,8.41,1.03,8.64,0.0 +2020-04-17 23:00:00,28.5,76.2,18.07,27.36,13.43,0.64,48.64,17.57,7.48,1.2,8.55,0.0 +2020-04-18 00:00:00,30.31,83.43,17.48,27.93,14.47,0.69,47.08,17.11,7.62,1.3,8.05,0.0 +2020-04-18 01:00:00,35.2,101.89,16.78,28.73,14.57,0.74,41.5,16.66,7.18,1.72,7.69,0.0 +2020-04-18 02:00:00,36.25,113.68,16.26,29.38,13.72,0.75,39.59,16.2,7.29,1.74,7.95,0.0 +2020-04-18 03:00:00,32.17,103.39,14.83,27.47,13.15,0.66,39.19,15.53,7.44,1.58,7.87,0.0 +2020-04-18 04:00:00,29.65,89.04,14.6,26.67,12.95,0.66,37.79,14.47,6.37,1.59,7.77,0.0 +2020-04-18 05:00:00,28.04,80.47,13.58,25.65,13.2,0.65,37.36,13.66,6.44,1.38,7.68,0.0 +2020-04-18 06:00:00,26.87,109.47,13.69,25.9,13.29,0.63,35.85,13.85,6.64,1.36,7.59,0.0 +2020-04-18 07:00:00,25.2,102.5,14.14,26.65,13.05,0.62,34.27,14.16,6.65,1.11,6.94,0.0 +2020-04-18 08:00:00,22.71,64.57,14.71,27.1,13.5,0.66,36.01,14.75,7.06,1.33,7.06,0.0 +2020-04-18 09:00:00,21.33,69.44,14.53,27.38,14.39,0.7,41.69,15.04,7.37,1.41,7.42,0.0 +2020-04-18 10:00:00,22.71,77.07,14.01,27.88,13.56,0.67,51.45,14.47,7.02,1.18,6.86,0.0 +2020-04-18 11:00:00,24.59,80.6,13.76,27.57,13.81,0.66,60.77,14.39,6.89,1.33,6.47,0.0 +2020-04-18 12:00:00,27.06,87.24,13.45,27.27,13.36,0.6,66.77,14.49,7.18,0.99,6.87,0.0 +2020-04-18 13:00:00,25.36,88.47,13.25,26.91,12.79,0.61,69.03,15.11,7.6,0.94,6.66,0.0 +2020-04-18 14:00:00,23.65,93.24,12.86,26.26,11.68,0.63,71.2,15.7,8.59,0.92,5.95,0.0 +2020-04-18 15:00:00,26.91,106.19,12.44,26.55,10.73,0.67,71.17,16.6,9.47,0.77,5.35,0.0 +2020-04-18 16:00:00,28.87,120.3,12.34,26.63,9.81,0.66,71.38,17.85,10.62,0.8,5.31,0.0 +2020-04-18 17:00:00,26.51,121.39,12.76,26.33,9.36,0.65,70.3,18.61,11.32,0.85,5.48,0.0 +2020-04-18 18:00:00,26.66,135.27,14.58,26.37,10.16,0.69,62.21,19.82,11.08,0.82,6.38,0.0 +2020-04-18 19:00:00,34.48,189.32,14.82,26.49,10.41,0.63,54.42,19.83,11.25,0.81,7.82,0.0 +2020-04-18 20:00:00,30.1,151.1,21.06,26.58,11.91,0.87,41.75,22.94,11.21,0.83,7.87,0.0 +2020-04-18 21:00:00,30.7,89.58,25.72,27.84,12.51,0.79,31.3,26.01,11.18,1.27,12.38,0.0 +2020-04-18 22:00:00,43.85,102.48,21.76,28.61,13.35,0.72,32.69,22.25,9.87,1.34,13.11,0.0 +2020-04-18 23:00:00,38.99,100.53,17.29,28.26,13.4,0.67,34.54,18.98,9.44,1.21,8.58,0.0 +2020-04-19 00:00:00,27.69,73.96,16.31,28.22,13.42,0.64,40.55,17.35,8.65,1.26,8.13,0.0 +2020-04-19 01:00:00,19.32,57.4,17.05,28.5,12.84,0.64,36.86,17.25,8.22,1.39,7.43,0.0 +2020-04-19 02:00:00,21.07,50.21,17.76,30.3,12.66,0.65,29.13,17.8,8.2,1.42,7.74,0.0 +2020-04-19 03:00:00,20.18,49.62,15.41,28.52,13.43,0.61,29.88,15.69,7.6,1.34,8.13,0.0 +2020-04-19 04:00:00,22.26,51.78,15.27,27.19,13.46,0.62,28.62,15.43,7.47,1.25,7.26,0.0 +2020-04-19 05:00:00,18.9,41.75,17.4,26.96,13.59,0.63,19.68,16.51,8.11,0.94,8.61,0.0 +2020-04-19 06:00:00,19.35,37.63,21.09,27.26,13.07,0.63,15.78,19.94,9.62,1.1,8.92,0.0 +2020-04-19 07:00:00,19.33,40.86,23.03,28.74,12.79,0.7,15.3,23.75,12.79,1.26,17.99,0.0 +2020-04-19 08:00:00,21.79,49.45,23.81,32.08,14.14,0.76,15.5,24.45,12.97,1.29,14.82,0.0 +2020-04-19 09:00:00,36.81,75.52,20.4,34.38,18.25,0.79,24.44,21.49,10.84,1.62,11.6,0.0 +2020-04-19 10:00:00,77.77,133.25,16.95,35.36,21.66,0.76,39.18,18.12,9.05,1.71,9.29,0.0 +2020-04-19 11:00:00,72.68,121.11,15.2,33.96,19.22,0.72,50.5,16.73,8.68,1.5,7.75,0.0 +2020-04-19 12:00:00,57.13,96.52,14.58,32.16,15.09,0.66,56.91,16.04,8.06,1.35,7.36,0.0 +2020-04-19 13:00:00,37.2,76.89,14.35,31.44,12.68,0.62,61.92,16.43,8.42,1.09,6.48,0.0 +2020-04-19 14:00:00,29.92,63.68,13.63,30.03,11.04,0.6,65.34,16.37,8.72,0.81,5.79,0.0 +2020-04-19 15:00:00,27.9,56.45,14.38,30.77,9.52,0.58,67.84,18.09,9.61,0.88,5.88,0.0 +2020-04-19 16:00:00,25.54,56.69,13.06,28.54,8.64,0.55,70.53,18.35,10.68,0.75,5.43,0.0 +2020-04-19 17:00:00,20.23,45.17,13.45,27.03,8.57,0.6,69.83,19.32,11.27,0.7,5.4,0.0 +2020-04-19 18:00:00,15.67,43.61,13.7,26.63,7.95,0.68,69.88,20.09,11.8,0.66,5.53,0.0 +2020-04-19 19:00:00,16.91,47.98,16.92,25.8,8.9,0.59,63.14,20.83,11.2,0.6,5.96,0.0 +2020-04-19 20:00:00,25.23,68.41,26.29,29.74,10.62,0.82,38.56,25.63,11.04,1.21,8.37,0.0 +2020-04-19 21:00:00,49.94,111.99,35.33,30.56,12.51,1.07,24.79,32.21,12.32,1.83,15.36,0.0 +2020-04-19 22:00:00,84.4,161.53,38.51,32.02,14.79,1.04,20.73,34.58,12.84,1.98,18.04,0.0 +2020-04-19 23:00:00,84.43,161.11,39.48,32.38,17.28,1.11,17.74,37.3,14.94,2.91,19.78,0.0 +2020-04-20 00:00:00,86.29,156.26,38.15,32.91,20.96,1.15,18.09,35.09,13.88,3.26,19.06,0.0 +2020-04-20 01:00:00,84.74,152.92,36.57,33.3,20.94,1.25,15.1,34.08,14.12,3.62,17.36,0.0 +2020-04-20 02:00:00,84.9,150.25,37.24,35.03,19.11,1.26,13.57,39.04,19.01,3.98,16.93,0.0 +2020-04-20 03:00:00,83.06,151.43,34.98,34.29,20.28,1.26,12.29,39.09,20.84,4.1,18.9,0.0 +2020-04-20 04:00:00,81.97,151.65,33.32,33.63,21.27,1.28,12.56,36.92,19.67,4.3,24.69,0.0 +2020-04-20 05:00:00,88.0,153.9,33.02,33.48,18.88,1.37,12.65,38.11,21.26,4.25,28.07,0.0 +2020-04-20 06:00:00,88.94,153.03,33.24,34.46,20.08,1.52,12.5,39.16,21.85,4.67,30.95,0.0 +2020-04-20 07:00:00,97.21,169.05,33.47,36.42,19.42,1.52,15.27,38.46,22.15,4.08,42.75,0.0 +2020-04-20 08:00:00,102.87,182.21,33.39,36.82,22.1,1.48,16.77,32.24,14.7,4.55,34.14,0.0 +2020-04-20 09:00:00,105.09,197.66,27.34,36.47,24.04,1.26,24.45,26.34,11.55,3.94,20.3,0.11 +2020-04-20 10:00:00,83.74,189.97,19.36,31.75,16.28,0.93,32.32,19.01,8.44,2.59,11.81,0.0 +2020-04-20 11:00:00,35.84,127.67,16.49,30.53,12.46,0.82,37.32,16.94,7.94,1.68,8.38,0.0 +2020-04-20 12:00:00,20.84,89.67,14.97,30.05,10.87,0.84,42.46,16.04,8.07,1.36,7.79,0.0 +2020-04-20 13:00:00,17.88,78.37,14.53,32.24,9.99,0.86,52.33,15.88,7.96,1.28,6.89,0.0 +2020-04-20 14:00:00,13.98,61.95,13.76,30.22,9.51,0.64,60.08,15.48,7.93,1.02,6.34,0.0 +2020-04-20 15:00:00,14.63,46.02,13.57,30.36,8.94,0.7,59.34,15.45,7.99,0.62,5.78,0.0 +2020-04-20 16:00:00,14.08,40.6,13.52,28.77,8.67,0.7,56.19,15.84,8.4,0.58,5.94,0.0 +2020-04-20 17:00:00,10.69,34.16,13.25,27.41,8.49,0.73,52.99,16.16,8.81,0.64,6.19,0.0 +2020-04-20 18:00:00,10.09,30.18,13.99,27.42,8.83,0.73,54.89,16.09,8.45,0.69,6.26,0.0 +2020-04-20 19:00:00,9.78,35.64,17.68,26.57,9.67,0.67,45.01,18.56,8.92,0.59,6.57,0.0 +2020-04-20 20:00:00,19.08,55.59,24.84,27.95,11.2,0.85,30.14,23.36,9.44,0.97,7.86,0.0 +2020-04-20 21:00:00,40.24,96.88,31.6,29.04,12.5,1.01,23.95,26.77,9.35,1.57,13.0,0.0 +2020-04-20 22:00:00,42.86,120.06,22.91,29.07,13.04,0.88,39.52,21.62,8.47,1.56,16.18,0.0 +2020-04-20 23:00:00,31.89,92.94,18.37,29.47,13.84,0.8,44.38,17.54,8.0,1.01,10.4,0.0 +2020-04-21 00:00:00,30.2,75.78,17.46,30.99,15.26,0.82,44.03,16.72,7.44,1.08,9.43,0.0 +2020-04-21 01:00:00,34.65,79.32,17.28,31.09,14.82,0.7,39.2,16.39,7.24,1.33,8.59,0.0 +2020-04-21 02:00:00,37.13,81.71,18.07,32.52,15.52,0.74,32.02,16.85,7.15,1.5,8.13,0.0 +2020-04-21 03:00:00,36.47,81.18,20.93,31.69,18.92,0.76,30.98,19.24,8.08,1.78,10.37,0.0 +2020-04-21 04:00:00,40.28,83.55,21.17,29.95,17.2,0.79,25.88,19.59,8.45,2.02,11.64,0.0 +2020-04-21 05:00:00,35.97,79.02,22.84,29.7,17.03,0.82,19.46,20.52,8.61,1.92,9.05,0.0 +2020-04-21 06:00:00,40.51,88.67,24.15,30.34,17.17,0.89,18.36,21.63,8.73,2.03,9.02,0.0 +2020-04-21 07:00:00,38.34,93.46,25.34,30.73,17.68,0.91,13.69,23.15,9.82,1.97,9.83,0.0 +2020-04-21 08:00:00,39.68,100.84,23.12,32.79,19.79,0.89,23.98,21.05,9.55,1.92,10.86,0.0 +2020-04-21 09:00:00,51.01,113.57,21.93,30.65,22.62,0.91,44.29,20.31,8.65,1.89,11.23,0.0 +2020-04-21 10:00:00,54.3,110.4,20.4,31.43,24.38,0.88,55.11,19.05,8.08,1.76,9.94,0.0 +2020-04-21 11:00:00,51.37,106.3,17.67,30.4,16.29,0.84,68.64,17.26,7.58,3.15,17.27,0.0 +2020-04-21 12:00:00,41.84,87.42,15.39,30.19,15.26,0.81,74.45,16.02,7.76,1.27,7.32,0.0 +2020-04-21 13:00:00,36.82,83.18,14.13,30.99,14.84,0.71,72.73,15.58,7.93,1.12,7.69,0.0 +2020-04-21 14:00:00,35.54,79.05,13.77,30.91,13.85,0.78,74.49,16.16,8.92,1.13,6.42,0.0 +2020-04-21 15:00:00,28.48,69.56,14.25,28.87,11.52,0.86,72.13,18.38,10.13,0.95,6.3,0.0 +2020-04-21 16:00:00,24.11,64.18,13.97,29.27,9.97,0.78,73.5,18.12,9.95,0.77,5.36,0.0 +2020-04-21 17:00:00,21.68,60.04,13.81,28.69,9.72,0.79,72.76,18.66,10.65,0.72,5.43,0.0 +2020-04-21 18:00:00,20.5,58.71,13.92,27.91,9.6,0.77,75.9,18.82,10.72,0.63,6.01,0.0 +2020-04-21 19:00:00,19.31,58.82,15.73,25.68,9.89,0.76,68.47,19.54,10.38,0.81,6.64,0.0 +2020-04-21 20:00:00,24.8,71.71,20.56,25.38,11.28,0.76,55.58,21.51,9.95,1.14,6.92,0.0 +2020-04-21 21:00:00,38.44,99.86,25.37,26.37,12.98,0.87,42.95,23.65,9.58,1.3,8.78,0.0 +2020-04-21 22:00:00,53.88,129.27,30.5,27.62,15.43,0.94,33.25,26.51,9.34,1.54,10.92,0.0 +2020-04-21 23:00:00,56.66,138.96,29.51,29.82,17.64,0.95,33.5,25.02,8.63,1.68,11.05,0.0 +2020-04-22 00:00:00,62.03,146.76,26.66,30.67,17.48,0.92,34.57,23.17,8.53,1.93,14.17,0.0 +2020-04-22 01:00:00,64.11,143.48,27.09,31.24,20.29,0.81,26.94,23.92,9.09,2.0,11.3,0.0 +2020-04-22 02:00:00,71.58,152.62,28.29,32.19,19.78,0.84,19.38,25.7,10.43,2.29,12.06,0.0 +2020-04-22 03:00:00,74.25,158.31,29.6,31.37,20.72,0.92,17.43,28.23,12.37,2.78,16.3,0.0 +2020-04-22 04:00:00,77.56,162.0,29.79,30.93,22.46,0.94,16.07,30.2,14.13,2.57,16.03,0.05 +2020-04-22 05:00:00,79.93,164.13,30.12,30.35,24.37,0.97,11.21,30.17,14.15,2.75,20.8,0.0 +2020-04-22 06:00:00,79.43,168.2,30.92,31.2,18.73,0.99,10.17,30.6,14.8,3.51,18.24,0.0 +2020-04-22 07:00:00,88.04,182.83,32.27,32.2,20.01,0.99,11.36,31.9,15.99,3.32,19.34,0.1 +2020-04-22 08:00:00,99.11,206.74,30.58,34.76,26.23,0.96,24.77,27.98,12.61,3.41,20.04,0.0 +2020-04-22 09:00:00,113.48,226.38,25.85,35.05,28.41,0.92,51.45,23.11,9.92,2.85,15.51,0.03 +2020-04-22 10:00:00,100.68,192.43,20.47,32.57,22.51,0.9,70.55,19.6,8.44,2.19,11.55,0.0 +2020-04-22 11:00:00,67.42,129.61,17.1,30.06,17.34,0.76,76.85,17.04,7.8,1.79,9.94,0.0 +2020-04-22 12:00:00,43.91,86.59,15.35,28.95,15.02,0.63,76.85,16.51,8.07,1.26,7.77,0.0 +2020-04-22 13:00:00,32.2,74.76,14.72,28.29,13.35,0.59,79.46,15.42,8.02,1.11,7.3,0.0 +2020-04-22 14:00:00,30.06,70.95,13.95,27.83,12.36,0.62,76.37,16.15,8.3,0.94,8.45,0.0 +2020-04-22 15:00:00,26.16,67.78,14.02,26.73,10.36,0.65,76.95,17.5,9.39,0.85,6.34,0.0 +2020-04-22 16:00:00,18.93,58.53,13.74,26.53,9.03,0.72,78.22,17.58,9.88,0.73,7.25,0.0 +2020-04-22 17:00:00,16.96,58.72,14.58,24.83,8.9,0.68,79.53,19.26,10.72,0.7,6.41,0.0 +2020-04-22 18:00:00,17.45,58.97,15.76,23.89,8.71,0.66,79.4,20.58,11.51,0.72,6.22,0.0 +2020-04-22 19:00:00,18.57,64.07,20.04,23.26,9.48,0.71,69.24,22.85,11.54,0.65,5.91,0.0 +2020-04-22 20:00:00,27.45,95.55,27.0,24.99,13.95,1.01,53.86,25.74,10.77,1.66,12.57,0.0 +2020-04-22 21:00:00,47.78,138.0,34.95,27.6,17.22,1.04,37.22,29.95,10.43,2.67,24.29,0.0 +2020-04-22 22:00:00,64.35,159.99,40.91,29.04,17.96,1.22,26.4,33.14,10.78,2.84,32.26,0.0 +2020-04-22 23:00:00,76.56,176.31,41.11,30.78,21.52,1.26,22.36,33.71,11.08,3.14,23.61,0.0 +2020-04-23 00:00:00,89.7,187.97,38.71,31.85,17.84,1.22,22.45,32.29,10.78,3.76,36.52,0.08 +2020-04-23 01:00:00,89.31,189.57,34.46,32.32,24.73,1.18,27.07,29.39,10.55,4.07,24.88,0.0 +2020-04-23 02:00:00,82.22,168.91,30.49,32.91,24.35,1.03,29.41,25.76,9.43,4.01,33.7,0.03 +2020-04-23 03:00:00,72.78,154.11,28.93,31.39,24.7,0.96,29.72,24.94,10.14,3.78,32.28,0.01 +2020-04-23 04:00:00,69.23,146.69,26.92,30.87,22.94,0.93,34.12,23.35,8.56,3.81,22.0,0.0 +2020-04-23 05:00:00,65.79,139.41,24.25,29.99,23.37,0.87,37.78,21.66,8.46,3.54,18.42,0.01 +2020-04-23 06:00:00,61.66,132.95,25.02,30.97,24.16,0.9,34.57,22.66,8.78,2.81,14.93,0.12 +2020-04-23 07:00:00,60.61,139.05,26.68,31.21,18.2,0.95,32.77,22.37,8.63,3.34,19.28,0.0 +2020-04-23 08:00:00,66.12,161.01,26.65,32.14,20.04,1.0,43.62,23.29,8.8,3.41,17.34,0.0 +2020-04-23 09:00:00,72.44,176.07,22.48,32.94,22.79,0.95,60.38,19.94,7.68,4.52,17.94,0.0 +2020-04-23 10:00:00,72.49,166.7,18.11,31.9,21.62,0.85,67.7,17.01,7.43,5.6,17.86,0.0 +2020-04-23 11:00:00,53.15,111.3,15.89,30.82,19.87,0.79,68.43,15.9,7.37,3.77,14.87,0.0 +2020-04-23 12:00:00,40.69,88.14,15.52,28.62,18.73,0.79,72.25,16.62,8.04,2.62,12.78,0.0 +2020-04-23 13:00:00,34.09,77.21,15.53,28.36,18.8,0.67,72.77,17.0,8.5,2.17,11.57,0.0 +2020-04-23 14:00:00,32.68,101.52,15.61,28.26,11.9,0.92,68.46,18.27,9.32,1.66,13.51,0.0 +2020-04-23 15:00:00,29.33,140.03,14.79,26.63,9.72,0.72,63.04,18.42,10.08,1.17,14.17,0.0 +2020-04-23 16:00:00,14.55,73.39,14.62,26.4,8.76,0.67,60.31,18.0,9.84,0.8,6.54,0.0 +2020-04-23 17:00:00,11.27,61.63,15.57,26.27,9.38,0.62,58.11,18.65,9.89,0.63,6.38,0.0 +2020-04-23 18:00:00,10.89,52.88,17.81,26.06,8.99,0.62,53.76,19.36,9.61,1.02,7.48,0.0 +2020-04-23 19:00:00,16.68,54.64,23.53,25.46,10.01,0.7,42.76,22.66,9.59,1.18,9.34,0.0 +2020-04-23 20:00:00,30.45,78.19,30.03,28.51,11.9,0.94,29.58,25.97,9.49,1.56,10.82,0.0 +2020-04-23 21:00:00,65.72,133.58,35.82,30.5,13.7,1.16,18.57,29.36,9.75,2.16,13.76,0.0 +2020-04-23 22:00:00,84.77,160.78,39.35,32.23,14.67,1.25,15.08,33.81,12.59,2.76,17.29,0.0 +2020-04-23 23:00:00,86.52,172.04,39.15,33.78,16.21,1.24,13.1,33.49,12.81,3.05,18.92,0.04 +2020-04-24 00:00:00,92.51,179.76,36.12,33.94,17.21,1.14,14.16,30.85,11.48,3.08,20.46,0.1 +2020-04-24 01:00:00,88.23,170.49,33.95,34.97,18.85,1.09,13.76,28.96,11.01,2.76,17.17,0.21 +2020-04-24 02:00:00,88.33,164.14,33.11,35.9,17.63,1.08,10.76,28.59,11.09,2.69,15.24,0.28 +2020-04-24 03:00:00,81.71,151.37,33.27,35.28,20.13,1.11,10.84,29.77,12.37,3.45,21.48,0.26 +2020-04-24 04:00:00,88.03,159.31,32.74,35.36,25.17,1.12,11.11,29.7,12.63,2.9,27.07,0.2 +2020-04-24 05:00:00,93.89,173.18,30.89,35.27,25.43,1.08,14.33,27.3,11.21,3.64,22.6,0.18 +2020-04-24 06:00:00,94.73,173.48,30.73,35.59,25.25,1.08,15.39,26.88,11.63,3.68,22.34,0.0 +2020-04-24 07:00:00,93.51,174.48,30.72,36.55,19.94,1.14,17.06,28.41,13.65,4.07,19.17,0.0 +2020-04-24 08:00:00,90.57,175.03,26.9,37.19,21.36,1.11,26.35,25.16,10.97,4.32,15.94,0.0 +2020-04-24 09:00:00,80.25,161.71,21.8,34.58,20.86,1.02,42.62,20.18,8.62,3.65,12.41,0.08 +2020-04-24 10:00:00,64.65,133.39,19.51,33.87,19.98,0.94,60.55,17.89,7.45,3.07,10.1,0.0 +2020-04-24 11:00:00,55.2,116.24,17.96,31.02,18.62,0.92,72.54,17.74,7.86,2.69,8.16,0.0 +2020-04-24 12:00:00,45.72,101.75,16.44,29.36,17.07,0.78,76.1,16.81,7.92,2.12,7.31,0.0 +2020-04-24 13:00:00,38.3,89.99,15.53,28.77,16.24,0.68,78.89,17.58,8.87,1.74,6.65,0.0 +2020-04-24 14:00:00,34.57,83.19,14.47,30.37,15.35,0.77,84.08,18.11,9.79,1.45,5.94,0.0 +2020-04-24 15:00:00,34.05,81.82,14.85,29.61,14.88,0.9,92.11,19.71,10.91,1.54,5.3,0.01 +2020-04-24 16:00:00,31.19,79.15,15.37,29.63,15.08,0.77,90.44,21.17,12.06,1.39,5.14,0.0 +2020-04-24 17:00:00,29.75,80.52,15.26,29.69,15.6,0.67,89.6,21.86,12.69,1.32,5.07,0.0 +2020-04-24 18:00:00,28.43,78.18,16.8,29.2,15.37,0.81,88.49,23.02,12.95,1.56,7.33,0.0 +2020-04-24 19:00:00,29.78,83.73,22.26,29.32,16.33,0.87,68.52,25.74,13.23,1.53,9.65,0.0 +2020-04-24 20:00:00,42.96,120.49,32.46,30.57,19.14,1.06,49.05,30.36,11.97,1.69,15.96,0.0 +2020-04-24 21:00:00,74.02,183.76,37.66,32.21,17.15,1.36,40.86,33.25,12.34,2.5,15.55,0.0 +2020-04-24 22:00:00,90.45,214.11,36.32,32.4,18.42,1.17,38.63,31.34,11.31,2.63,13.84,0.04 +2020-04-24 23:00:00,91.08,193.88,29.72,32.22,15.75,1.03,45.19,26.53,10.03,2.16,12.51,0.0 +2020-04-25 00:00:00,67.55,156.35,25.21,31.77,13.72,0.97,44.66,23.11,9.53,1.94,12.42,0.0 +2020-04-25 01:00:00,48.29,127.51,20.01,30.05,12.2,0.76,44.89,19.5,9.01,1.47,11.85,0.0 +2020-04-25 02:00:00,36.06,102.99,21.83,32.67,12.85,0.72,30.1,20.63,9.4,1.52,14.66,0.0 +2020-04-25 03:00:00,57.19,123.36,22.35,29.98,13.57,0.72,30.74,21.46,9.5,1.63,15.21,0.0 +2020-04-25 04:00:00,42.22,104.59,18.91,27.89,12.66,0.64,41.33,18.17,8.49,1.35,10.96,0.0 +2020-04-25 05:00:00,20.11,63.26,18.67,27.33,13.82,0.62,37.93,17.84,8.49,1.12,8.29,0.0 +2020-04-25 06:00:00,17.55,51.95,17.56,28.0,15.0,0.59,46.11,17.4,8.25,1.1,7.68,0.0 +2020-04-25 07:00:00,16.83,57.36,16.26,28.2,14.71,0.61,53.27,16.01,7.95,0.84,6.63,0.0 +2020-04-25 08:00:00,12.02,50.35,16.14,28.38,14.73,0.62,52.67,15.84,7.45,0.83,6.28,0.0 +2020-04-25 09:00:00,12.78,48.65,17.07,28.72,14.84,0.62,52.33,16.57,7.61,0.81,6.59,0.0 +2020-04-25 10:00:00,16.68,57.03,15.9,28.84,15.44,0.62,56.49,16.08,7.84,0.83,6.6,0.0 +2020-04-25 11:00:00,16.4,55.41,14.34,28.41,9.01,0.62,61.51,15.31,7.59,0.72,6.28,0.0 +2020-04-25 12:00:00,15.61,49.37,13.74,28.81,9.55,0.62,64.22,15.92,8.44,0.65,5.99,0.0 +2020-04-25 13:00:00,16.26,45.46,12.97,28.28,10.02,0.57,68.5,16.21,8.83,0.56,5.83,0.0 +2020-04-25 14:00:00,17.58,43.53,13.4,27.57,10.34,0.64,69.07,17.87,9.97,0.61,5.01,0.0 +2020-04-25 15:00:00,18.72,42.97,13.08,27.18,10.68,1.12,74.61,18.46,10.68,0.68,4.66,0.0 +2020-04-25 16:00:00,17.72,48.17,12.84,26.79,11.25,0.72,81.74,19.04,11.34,0.79,4.61,0.0 +2020-04-25 17:00:00,21.01,57.22,13.0,27.11,11.18,0.61,82.11,19.95,12.05,0.65,4.65,0.0 +2020-04-25 18:00:00,24.59,65.56,14.3,26.72,10.53,0.64,81.72,22.09,13.44,0.85,5.29,0.0 +2020-04-25 19:00:00,27.56,75.32,17.35,27.15,10.72,0.78,72.22,23.33,12.43,0.64,5.33,0.0 +2020-04-25 20:00:00,37.88,100.36,25.71,27.93,11.46,1.0,47.64,26.77,11.53,1.11,7.29,0.0 +2020-04-25 21:00:00,74.96,160.11,30.69,29.7,12.65,1.25,34.43,28.78,10.89,2.05,14.71,0.0 +2020-04-25 22:00:00,90.43,180.72,30.87,29.79,16.26,1.03,39.37,27.48,10.39,2.17,14.74,0.0 +2020-04-25 23:00:00,68.26,192.28,26.23,30.31,19.08,0.92,41.11,23.98,9.4,2.11,13.63,0.0 +2020-04-26 00:00:00,61.49,190.36,26.21,30.73,21.02,0.91,37.13,23.7,9.45,2.04,15.07,0.0 +2020-04-26 01:00:00,63.37,189.71,25.63,30.98,18.56,0.94,34.2,23.09,9.55,2.52,18.45,0.0 +2020-04-26 02:00:00,63.5,175.37,23.31,32.71,24.96,0.96,32.63,21.79,9.24,2.46,11.47,0.0 +2020-04-26 03:00:00,68.09,174.04,22.33,31.28,18.17,0.89,41.12,21.49,9.36,2.6,11.12,0.0 +2020-04-26 04:00:00,64.42,161.14,20.03,30.55,17.17,0.92,44.63,19.18,8.09,2.54,9.7,0.04 +2020-04-26 05:00:00,63.07,164.45,18.53,30.5,17.19,0.9,48.56,17.75,7.64,2.51,9.31,0.01 +2020-04-26 06:00:00,67.43,172.79,18.41,31.62,18.4,0.94,49.62,17.39,7.46,2.9,10.26,0.0 +2020-04-26 07:00:00,74.11,186.24,19.08,32.3,17.74,0.93,40.56,18.51,8.44,3.11,9.4,0.0 +2020-04-26 08:00:00,70.25,181.24,18.69,32.19,17.3,0.93,36.88,17.95,7.78,2.39,8.3,0.0 +2020-04-26 09:00:00,63.44,145.6,18.31,31.77,15.53,0.9,44.88,17.77,7.96,2.51,8.89,0.0 +2020-04-26 10:00:00,52.97,128.14,14.94,29.85,13.19,0.71,50.45,15.52,7.52,1.87,7.23,0.0 +2020-04-26 11:00:00,25.9,58.34,14.78,29.48,13.82,0.7,48.74,15.34,7.48,1.19,6.99,0.0 +2020-04-26 12:00:00,25.41,57.69,15.48,31.64,13.56,0.71,53.25,15.67,7.35,1.32,8.37,0.0 +2020-04-26 13:00:00,34.81,168.89,14.22,34.76,13.45,0.69,52.92,17.0,9.5,1.27,8.38,0.0 +2020-04-26 14:00:00,26.93,221.0,14.01,33.97,13.57,0.66,56.76,15.62,8.03,0.95,6.61,0.0 +2020-04-26 15:00:00,16.35,69.59,14.01,35.53,12.78,0.57,55.26,14.87,8.11,0.87,6.65,0.0 +2020-04-26 16:00:00,11.54,50.14,13.54,36.2,12.83,0.58,56.84,24.11,17.24,0.91,5.57,0.0 +2020-04-26 17:00:00,11.06,51.8,12.92,36.81,12.61,0.59,57.51,14.9,7.88,0.74,5.08,0.0 +2020-04-26 18:00:00,11.71,46.08,13.54,29.38,13.12,0.67,58.38,14.69,7.49,0.85,5.97,0.0 +2020-04-26 19:00:00,13.01,48.84,14.71,28.99,14.65,0.7,54.94,15.45,7.39,0.82,5.46,0.0 +2020-04-26 20:00:00,14.7,44.93,14.94,29.27,14.53,0.67,52.17,15.4,7.15,0.94,5.48,0.0 +2020-04-26 21:00:00,20.13,45.75,16.07,29.15,19.66,0.67,46.92,15.89,7.38,0.95,5.83,0.0 +2020-04-26 22:00:00,21.42,40.2,17.41,29.33,16.67,0.68,40.42,16.48,7.27,1.09,6.22,0.0 +2020-04-26 23:00:00,20.72,38.11,17.77,29.71,18.61,0.64,37.13,17.01,7.4,0.99,6.38,0.0 +2020-04-27 00:00:00,24.03,41.52,17.18,36.73,16.55,0.61,34.73,16.75,7.47,1.21,6.91,0.0 +2020-04-27 01:00:00,25.73,42.86,16.71,30.18,11.79,0.76,37.27,16.19,7.5,1.39,7.68,0.0 +2020-04-27 02:00:00,26.73,43.74,15.61,31.32,13.45,0.74,35.19,15.28,7.11,1.62,8.05,0.0 +2020-04-27 03:00:00,26.71,43.1,16.29,34.64,13.73,0.76,33.38,16.03,7.44,1.61,8.78,0.0 +2020-04-27 04:00:00,28.89,46.35,16.55,33.82,13.37,0.73,28.89,15.63,6.92,1.68,8.19,0.0 +2020-04-27 05:00:00,34.65,54.32,15.92,28.93,13.91,0.75,29.43,15.05,6.66,1.73,7.85,0.0 +2020-04-27 06:00:00,31.05,47.5,15.27,35.22,14.49,0.7,31.17,14.6,6.78,1.66,6.47,0.0 +2020-04-27 07:00:00,26.67,40.93,15.66,29.41,15.09,0.77,32.94,14.93,6.64,1.69,6.38,0.0 +2020-04-27 08:00:00,27.25,42.92,15.99,30.22,14.59,0.74,35.16,15.24,7.04,1.51,5.86,0.0 +2020-04-27 09:00:00,27.85,47.68,15.37,28.17,15.03,0.74,40.25,15.11,6.95,1.34,5.73,0.0 +2020-04-27 10:00:00,25.41,51.64,14.76,28.13,13.8,0.72,50.31,14.58,6.48,1.2,5.05,0.0 +2020-04-27 11:00:00,24.15,54.09,13.22,27.85,13.59,0.69,57.65,13.85,6.78,1.24,4.64,0.0 +2020-04-27 12:00:00,23.38,49.06,12.97,27.99,13.91,0.68,66.06,14.05,6.83,1.0,4.78,0.0 +2020-04-27 13:00:00,21.71,48.67,12.55,27.64,14.31,0.74,71.84,14.41,7.58,1.02,4.82,0.0 +2020-04-27 14:00:00,21.03,45.32,12.38,35.74,14.27,0.82,74.28,15.08,7.92,0.84,4.9,0.0 +2020-04-27 15:00:00,23.98,52.67,12.48,30.16,15.45,0.75,83.61,16.23,8.97,0.94,5.25,0.0 +2020-04-27 16:00:00,25.4,51.31,13.01,27.2,15.51,0.88,87.1,18.28,10.32,0.83,4.52,0.0 +2020-04-27 17:00:00,25.2,49.76,13.51,27.28,16.08,0.82,86.55,19.54,11.56,0.94,5.0,0.0 +2020-04-27 18:00:00,22.73,48.16,14.0,27.67,16.33,0.78,84.46,20.01,11.78,0.79,5.95,0.0 +2020-04-27 19:00:00,26.69,62.25,14.58,27.93,16.67,0.86,73.85,20.22,11.76,0.85,7.49,0.0 +2020-04-27 20:00:00,31.8,88.19,15.19,28.27,18.51,0.84,62.0,19.39,10.67,1.06,8.23,0.0 +2020-04-27 21:00:00,40.17,93.3,15.65,27.79,19.25,0.84,51.3,18.61,9.99,1.17,8.48,0.0 +2020-04-27 22:00:00,29.48,66.01,15.25,27.91,21.91,0.83,47.48,17.49,9.21,1.1,6.49,0.0 +2020-04-27 23:00:00,31.52,61.06,15.03,28.47,22.56,0.75,47.34,16.51,8.26,1.22,5.84,0.0 +2020-04-28 00:00:00,38.3,60.88,15.24,28.7,16.61,0.73,42.48,16.26,8.06,1.31,7.07,0.0 +2020-04-28 01:00:00,31.83,61.48,15.58,37.1,15.09,0.74,46.87,16.15,7.92,1.32,7.83,0.0 +2020-04-28 02:00:00,33.73,60.65,15.42,32.88,13.09,0.76,44.26,15.97,8.0,1.46,6.79,0.0 +2020-04-28 03:00:00,28.98,52.98,15.67,30.57,13.51,0.73,45.44,16.0,7.71,1.71,6.95,0.0 +2020-04-28 04:00:00,27.6,48.32,15.26,30.19,16.92,0.76,37.82,15.38,7.39,1.63,7.65,0.0 +2020-04-28 05:00:00,30.81,55.32,16.05,26.71,16.67,0.78,34.07,16.01,7.81,1.79,9.32,0.0 +2020-04-28 06:00:00,42.21,68.41,16.53,27.12,16.51,0.79,33.6,16.34,7.75,2.22,8.74,0.0 +2020-04-28 07:00:00,39.19,66.32,17.76,27.75,18.08,0.8,33.31,17.52,8.27,2.05,8.43,0.0 +2020-04-28 08:00:00,38.6,71.09,17.6,27.75,20.22,0.84,36.8,17.82,8.53,2.08,8.64,0.0 +2020-04-28 09:00:00,43.6,79.82,16.98,27.26,20.48,0.78,46.3,18.12,9.13,2.29,8.07,0.0 +2020-04-28 10:00:00,38.18,77.6,16.03,27.12,16.99,0.79,57.99,17.17,8.4,1.77,6.5,0.02 +2020-04-28 11:00:00,36.94,74.04,15.05,26.97,16.16,0.78,68.47,16.61,8.25,1.54,5.78,0.0 +2020-04-28 12:00:00,43.4,79.5,14.06,26.71,15.81,0.86,72.65,16.48,8.76,1.48,5.71,0.0 +2020-04-28 13:00:00,37.55,73.65,13.0,27.26,15.41,0.94,82.71,17.41,10.08,1.42,5.84,0.0 +2020-04-28 14:00:00,33.82,72.2,12.79,27.36,16.53,0.96,86.84,18.95,11.32,1.31,6.01,0.0 +2020-04-28 15:00:00,36.11,72.87,13.13,27.42,16.26,0.79,88.29,19.97,12.03,1.36,5.24,0.0 +2020-04-28 16:00:00,38.37,74.93,13.43,27.05,16.49,0.77,91.26,21.64,13.27,1.12,6.03,0.0 +2020-04-28 17:00:00,38.37,72.49,13.78,27.31,16.53,1.04,95.32,22.98,14.36,1.27,5.95,0.0 +2020-04-28 18:00:00,36.38,72.6,14.93,27.89,17.41,0.93,92.75,24.87,15.43,1.23,7.93,0.0 +2020-04-28 19:00:00,37.59,75.96,17.75,27.76,18.16,0.84,81.68,26.2,15.29,1.36,7.44,0.0 +2020-04-28 20:00:00,48.27,94.98,23.48,28.83,18.19,1.0,63.66,27.82,13.76,1.51,9.28,0.0 +2020-04-28 21:00:00,73.25,143.49,29.57,29.65,19.44,1.05,48.76,30.01,12.85,2.15,14.54,0.0 +2020-04-28 22:00:00,75.72,157.37,29.46,29.36,24.04,1.14,43.97,28.35,11.86,2.44,17.21,0.0 +2020-04-28 23:00:00,73.12,161.62,27.88,29.75,27.77,1.11,39.79,26.78,11.46,2.92,16.16,0.0 +2020-04-29 00:00:00,72.45,159.04,26.06,29.64,33.53,1.1,44.08,25.53,11.08,2.73,15.06,0.06 +2020-04-29 01:00:00,71.52,148.13,25.82,29.85,19.15,1.01,40.35,24.85,10.78,2.77,12.85,0.0 +2020-04-29 02:00:00,70.14,135.54,25.53,31.38,16.24,1.0,29.7,24.81,10.82,2.96,16.41,0.0 +2020-04-29 03:00:00,63.78,121.68,24.83,30.0,14.86,0.93,28.45,24.23,10.67,2.61,21.6,0.0 +2020-04-29 04:00:00,59.95,112.9,24.16,29.51,15.09,0.87,27.43,23.29,10.04,2.6,23.96,0.0 +2020-04-29 05:00:00,60.49,110.47,22.89,28.99,15.16,0.87,29.19,22.55,10.08,2.52,22.63,0.0 +2020-04-29 06:00:00,61.12,109.02,23.9,29.4,15.95,0.89,26.37,23.29,10.31,2.43,24.79,0.0 +2020-04-29 07:00:00,61.98,113.44,23.97,30.23,17.12,0.94,27.38,23.94,11.13,2.36,23.59,0.17 +2020-04-29 08:00:00,58.49,113.87,19.8,30.46,18.9,0.96,39.02,20.4,9.51,2.7,17.58,0.06 +2020-04-29 09:00:00,50.32,108.13,16.92,29.51,17.87,0.93,58.42,18.25,9.02,2.13,10.65,0.0 +2020-04-29 10:00:00,48.65,103.41,14.9,28.84,16.66,0.87,69.66,16.82,8.49,2.1,9.24,0.0 +2020-04-29 11:00:00,50.82,97.18,13.92,28.42,15.97,0.83,79.21,16.78,8.85,1.85,8.44,0.0 +2020-04-29 12:00:00,49.43,97.7,13.06,27.38,16.07,0.77,82.64,16.81,9.83,1.61,6.62,0.0 +2020-04-29 13:00:00,44.06,94.02,12.95,26.58,16.11,0.71,87.64,17.76,10.42,1.57,6.18,0.0 +2020-04-29 14:00:00,39.41,84.22,12.96,27.16,16.69,0.73,91.76,20.3,12.45,1.41,6.23,0.0 +2020-04-29 15:00:00,38.52,81.39,14.15,27.44,16.44,0.76,90.16,26.26,17.04,1.19,6.18,0.0 +2020-04-29 16:00:00,39.48,82.42,14.37,26.84,17.19,0.77,93.06,28.66,19.84,1.16,5.72,0.0 +2020-04-29 17:00:00,36.9,83.52,15.55,27.25,17.36,0.75,95.09,11.68,20.77,1.3,7.18,0.0 +2020-04-29 18:00:00,36.52,84.95,16.74,27.76,18.49,0.85,93.19,12.4,20.31,1.12,9.28,0.0 +2020-04-29 19:00:00,42.45,97.17,21.7,28.1,20.48,1.08,75.13,31.37,17.92,1.46,11.79,0.0 +2020-04-29 20:00:00,58.18,127.05,27.73,30.39,23.38,1.12,54.34,32.93,16.12,1.52,11.37,0.0 +2020-04-29 21:00:00,74.68,166.75,29.62,30.04,26.68,1.15,46.4,32.47,14.5,2.32,12.8,0.0 +2020-04-29 22:00:00,74.31,174.08,22.18,29.07,27.29,1.04,50.16,25.75,12.62,2.05,12.42,0.0 +2020-04-29 23:00:00,60.57,151.78,18.82,28.52,25.31,0.93,46.81,22.59,11.16,2.18,9.84,0.0 +2020-04-30 00:00:00,51.34,134.08,16.93,27.95,16.41,0.79,41.33,20.39,10.62,1.84,7.98,0.0 +2020-04-30 01:00:00,49.4,121.69,15.55,27.56,13.86,0.86,44.13,18.51,9.84,1.6,7.48,0.0 +2020-04-30 02:00:00,47.57,107.52,14.56,29.2,13.42,0.81,40.14,17.6,9.66,1.56,7.55,0.0 +2020-04-30 03:00:00,44.93,95.1,16.05,29.13,13.42,0.8,39.28,18.37,9.85,1.55,7.56,0.0 +2020-04-30 04:00:00,42.84,88.13,15.19,28.27,14.32,0.79,42.33,17.17,8.92,1.61,8.26,0.0 +2020-04-30 05:00:00,43.42,83.4,15.43,36.84,14.24,0.77,39.6,16.85,8.52,1.4,7.43,0.05 +2020-04-30 06:00:00,45.97,86.8,17.62,37.76,15.09,0.81,31.76,17.77,8.29,1.63,8.7,0.0 +2020-04-30 07:00:00,47.26,96.02,18.84,41.37,16.48,0.86,29.29,18.89,8.72,1.96,11.17,0.0 +2020-04-30 08:00:00,50.71,105.85,18.74,32.57,17.35,0.89,34.27,19.13,8.92,2.02,8.79,0.01 +2020-04-30 09:00:00,55.78,115.82,17.47,32.84,17.81,0.89,44.37,18.51,8.83,2.03,8.37,0.0 +2020-04-30 10:00:00,61.33,129.12,17.49,33.47,18.41,0.86,55.46,18.93,9.07,2.29,7.73,0.0 +2020-04-30 11:00:00,63.73,132.04,15.65,33.2,20.07,0.84,69.94,18.34,9.85,2.14,8.34,0.0 +2020-04-30 12:00:00,63.49,130.32,14.69,32.46,21.06,0.84,82.72,19.08,10.37,1.82,7.64,0.0 +2020-04-30 13:00:00,56.57,122.27,13.75,31.65,20.74,0.85,93.41,20.15,12.1,1.72,7.75,0.0 +2020-04-30 14:00:00,47.4,109.09,14.41,31.32,20.95,0.83,91.61,23.49,14.91,1.54,7.45,0.0 +2020-04-30 15:00:00,42.67,103.94,14.4,35.06,20.12,0.81,95.04,26.22,17.31,1.27,5.78,0.0 +2020-04-30 16:00:00,42.87,108.05,15.16,35.51,21.04,0.9,99.53,27.96,19.58,1.39,6.44,0.01 +2020-04-30 17:00:00,42.53,108.07,15.48,34.14,21.66,0.81,94.92,10.95,19.01,1.36,20.63,0.0 +2020-04-30 18:00:00,43.12,110.98,17.22,34.22,22.29,0.78,91.17,11.96,20.38,1.41,8.4,0.0 +2020-04-30 19:00:00,46.3,152.6,18.67,33.6,20.64,0.77,80.85,12.93,19.28,1.32,10.2,0.0 +2020-04-30 20:00:00,50.73,190.73,19.29,33.13,15.46,0.78,69.34,28.6,18.08,1.43,10.56,0.0 +2020-04-30 21:00:00,46.81,108.18,23.42,34.07,15.15,0.87,50.75,29.36,16.46,1.62,10.62,0.0 +2020-04-30 22:00:00,52.55,112.98,26.95,32.96,13.8,1.0,38.11,29.97,14.0,1.83,13.09,0.0 +2020-04-30 23:00:00,59.68,122.26,29.68,33.57,14.41,1.0,29.85,29.7,13.0,1.97,14.47,0.0 +2020-05-01 00:00:00,61.75,128.23,26.98,33.7,17.12,0.97,33.7,27.17,12.02,1.99,17.24,0.0 +2020-05-01 01:00:00,70.18,138.86,24.27,34.22,16.45,0.89,36.37,25.12,11.73,2.43,18.04,0.0 +2020-05-01 02:00:00,69.03,132.24,22.22,37.24,17.79,0.94,28.79,22.75,10.78,2.38,20.02,0.0 +2020-05-01 03:00:00,70.6,137.42,22.69,36.09,16.81,0.94,26.72,23.85,11.44,2.6,19.14,0.0 +2020-05-01 04:00:00,72.8,146.24,21.27,34.53,16.15,0.91,25.59,21.99,10.56,2.66,16.73,0.0 +2020-05-01 05:00:00,70.89,139.1,19.97,33.42,15.5,0.88,25.07,20.06,10.1,2.4,17.22,0.0 +2020-05-01 06:00:00,72.54,139.95,20.03,33.13,17.97,0.94,26.52,21.23,10.47,2.37,16.39,0.0 +2020-05-01 07:00:00,75.67,145.08,18.99,33.59,15.89,0.94,25.94,19.77,9.42,2.5,14.51,0.0 +2020-05-01 08:00:00,67.02,140.82,17.89,34.17,16.67,0.95,27.98,19.02,9.78,2.38,12.58,0.0 +2020-05-01 09:00:00,66.86,147.4,16.71,34.71,15.91,0.97,33.83,18.47,9.68,2.42,10.4,0.0 +2020-05-01 10:00:00,70.46,152.48,16.53,36.98,17.42,0.93,46.17,18.8,9.93,2.51,10.01,0.0 +2020-05-01 11:00:00,73.35,167.05,15.73,38.57,18.61,0.97,62.2,19.22,10.79,2.26,9.12,0.0 +2020-05-01 12:00:00,69.33,156.92,14.59,37.74,20.31,0.83,70.79,20.16,11.43,2.13,8.3,0.0 +2020-05-01 13:00:00,57.58,142.86,14.76,38.48,21.65,0.91,80.78,21.74,12.85,1.67,8.2,0.0 +2020-05-01 14:00:00,54.25,140.8,14.65,37.87,22.51,0.75,85.76,24.69,15.28,1.69,9.64,0.0 +2020-05-01 15:00:00,56.41,150.48,15.08,38.1,23.1,0.9,94.84,27.17,17.56,1.61,9.25,0.0 +2020-05-01 16:00:00,53.66,143.54,15.84,38.06,23.76,0.88,93.75,11.16,18.89,1.33,8.52,0.0 +2020-05-01 17:00:00,51.01,139.28,17.07,38.01,22.34,0.86,101.99,11.49,4.02,1.28,8.43,0.0 +2020-05-01 18:00:00,49.87,139.22,18.58,38.9,16.26,0.84,96.52,12.3,4.44,1.37,10.62,0.0 +2020-05-01 19:00:00,52.41,150.87,19.77,38.58,14.65,0.9,83.95,13.47,4.64,1.54,11.58,0.0 +2020-05-01 20:00:00,50.37,168.67,18.63,38.49,14.6,0.82,73.91,13.14,20.12,1.64,8.8,0.0 +2020-05-01 21:00:00,44.92,149.15,17.97,38.13,13.71,0.82,69.68,28.38,17.9,1.34,8.05,0.0 +2020-05-01 22:00:00,43.12,126.35,16.74,36.06,12.94,0.76,58.54,25.68,15.21,1.34,6.87,0.0 +2020-05-01 23:00:00,40.96,111.53,16.07,35.64,12.43,0.77,54.06,24.0,14.21,1.26,6.35,0.0 +2020-05-02 00:00:00,35.15,96.33,15.6,35.99,11.51,0.76,53.84,22.52,13.57,1.22,6.35,0.0 +2020-05-02 01:00:00,30.42,85.76,13.26,35.37,11.89,0.71,49.7,19.86,12.25,1.16,6.1,0.0 +2020-05-02 02:00:00,30.47,78.18,13.34,39.79,11.28,0.76,43.59,18.92,11.23,1.13,6.48,0.0 +2020-05-02 03:00:00,27.92,79.04,14.42,37.56,11.67,0.71,41.86,18.74,10.67,1.09,6.55,0.0 +2020-05-02 04:00:00,29.29,81.7,13.72,34.91,12.17,0.69,44.53,17.58,9.84,1.21,6.41,0.0 +2020-05-02 05:00:00,28.38,77.69,13.22,34.11,12.85,0.7,42.65,16.98,9.88,1.19,6.5,0.0 +2020-05-02 06:00:00,29.77,76.56,14.04,32.73,13.86,0.71,39.43,17.33,9.45,1.27,6.44,0.04 +2020-05-02 07:00:00,30.09,74.49,14.41,32.92,14.69,0.72,37.43,17.22,9.09,1.36,6.31,0.0 +2020-05-02 08:00:00,29.16,74.38,14.3,33.76,15.57,0.68,37.93,17.22,9.44,1.44,6.24,0.04 +2020-05-02 09:00:00,29.91,84.71,14.11,33.55,15.23,0.71,42.36,17.58,9.59,1.57,6.07,0.0 +2020-05-02 10:00:00,35.73,99.27,14.07,35.35,15.85,0.73,50.64,17.7,10.22,1.4,6.54,0.0 +2020-05-02 11:00:00,40.98,107.58,14.17,36.49,16.17,0.82,58.33,18.3,10.49,1.51,6.12,0.0 +2020-05-02 12:00:00,41.54,119.25,13.62,33.59,16.71,0.71,68.33,20.12,11.93,1.2,6.13,0.0 +2020-05-02 13:00:00,37.37,129.99,12.86,33.69,11.66,0.77,74.68,21.78,13.73,1.13,5.71,0.01 +2020-05-02 14:00:00,37.67,138.21,12.88,33.03,11.65,0.83,78.59,23.72,15.46,1.03,5.54,0.0 +2020-05-02 15:00:00,38.99,142.88,13.13,32.99,11.12,0.74,81.42,25.67,17.0,0.93,4.81,0.0 +2020-05-02 16:00:00,38.17,135.02,13.31,32.42,11.12,0.71,85.6,27.3,18.42,0.87,5.1,0.0 +2020-05-02 17:00:00,36.4,129.92,13.91,31.41,11.41,0.81,88.15,10.32,21.01,0.96,4.97,0.01 +2020-05-02 18:00:00,34.17,127.36,14.7,31.51,11.21,0.92,86.8,10.41,4.42,0.93,5.64,0.07 +2020-05-02 19:00:00,35.47,128.24,15.97,31.47,11.06,0.85,83.21,11.43,5.06,1.08,7.82,0.04 +2020-05-02 20:00:00,37.49,134.56,16.78,31.14,12.5,0.84,74.28,11.87,20.59,1.16,8.25,0.0 +2020-05-02 21:00:00,38.43,129.73,16.9,34.71,13.18,0.74,66.71,29.28,18.99,1.24,8.58,0.0 +2020-05-02 22:00:00,41.75,127.91,16.6,33.63,13.66,0.82,61.27,29.06,18.19,1.23,8.27,0.0 +2020-05-02 23:00:00,37.36,117.79,15.41,32.18,14.09,0.81,59.48,26.86,16.99,1.25,7.12,0.0 +2020-05-03 00:00:00,33.2,98.38,15.67,31.45,15.33,0.67,56.78,25.04,15.78,1.19,6.61,0.09 +2020-05-03 01:00:00,31.7,85.59,14.4,30.83,12.96,0.65,56.53,23.36,14.46,1.25,6.45,0.0 +2020-05-03 02:00:00,28.5,71.86,13.51,33.21,11.79,0.66,51.33,21.86,13.71,1.17,6.24,0.05 +2020-05-03 03:00:00,26.58,68.47,14.56,33.37,16.58,0.66,48.2,21.41,13.21,1.23,7.89,0.0 +2020-05-03 04:00:00,28.24,75.5,13.96,31.86,15.43,0.7,43.68,19.76,11.67,1.44,9.41,0.0 +2020-05-03 05:00:00,34.06,86.49,14.22,31.57,13.84,0.72,39.32,19.63,11.48,1.85,7.79,0.0 +2020-05-03 06:00:00,36.08,88.7,14.57,30.4,12.46,0.69,39.97,19.3,10.97,1.66,7.73,0.0 +2020-05-03 07:00:00,32.38,85.53,15.0,29.61,11.81,0.71,36.98,18.9,10.45,1.52,8.7,0.0 +2020-05-03 08:00:00,34.09,89.17,16.91,30.03,11.32,0.74,30.24,19.98,10.7,1.6,9.29,0.0 +2020-05-03 09:00:00,33.55,79.19,16.91,30.22,10.69,0.71,30.53,20.44,10.95,1.52,8.96,0.08 +2020-05-03 10:00:00,35.06,68.19,16.62,30.95,10.69,0.71,33.73,20.02,10.83,1.42,8.29,0.23 +2020-05-03 11:00:00,33.12,62.93,15.48,32.59,11.75,0.73,41.97,19.11,10.3,1.35,7.19,0.0 +2020-05-03 12:00:00,32.07,66.6,14.68,34.81,11.97,0.72,53.47,19.0,10.4,1.31,7.44,0.0 +2020-05-03 13:00:00,38.71,77.64,14.56,36.44,12.1,0.68,62.61,19.8,11.38,1.47,7.83,0.0 +2020-05-03 14:00:00,38.92,78.43,14.16,34.71,12.14,0.62,68.27,21.39,12.56,1.47,6.9,0.0 +2020-05-03 15:00:00,38.21,80.64,14.55,32.63,11.38,0.64,70.9,23.57,14.75,1.31,5.86,0.0 +2020-05-03 16:00:00,38.3,82.41,15.28,32.44,10.89,0.66,65.44,25.09,15.64,1.17,5.66,0.0 +2020-05-03 17:00:00,35.45,84.51,17.15,32.04,10.76,0.73,54.89,26.74,16.69,1.13,8.39,0.0 +2020-05-03 18:00:00,39.4,87.96,17.17,32.7,11.87,0.75,54.64,25.75,15.24,1.3,7.37,0.06 +2020-05-03 19:00:00,39.5,92.74,19.25,34.94,10.92,0.81,46.68,25.61,14.05,1.46,7.57,0.0 +2020-05-03 20:00:00,43.8,129.17,15.62,31.25,10.65,0.66,45.84,23.83,14.28,1.25,8.95,0.0 +2020-05-03 21:00:00,31.05,197.59,12.54,34.51,9.38,0.58,50.06,20.75,13.33,0.88,5.78,0.0 +2020-05-03 22:00:00,10.99,29.03,12.3,34.05,9.86,0.57,50.11,18.55,11.63,0.79,6.46,0.0 +2020-05-03 23:00:00,8.5,25.7,14.19,32.92,9.88,0.55,44.83,18.76,10.88,0.79,7.41,0.0 +2020-05-04 00:00:00,9.4,29.85,12.97,31.68,9.4,0.57,43.2,17.66,10.39,0.76,7.15,0.0 +2020-05-04 01:00:00,11.21,28.56,12.32,31.03,10.13,0.54,44.13,16.44,10.15,0.86,6.59,0.0 +2020-05-04 02:00:00,13.63,31.26,12.73,33.3,10.6,0.55,40.39,15.86,9.43,0.9,6.28,0.0 +2020-05-04 03:00:00,13.36,31.41,14.34,32.48,10.01,0.55,34.83,17.11,9.44,0.98,6.09,0.0 +2020-05-04 04:00:00,15.57,32.59,14.82,31.19,9.61,0.59,28.18,16.91,9.25,0.92,6.27,0.0 +2020-05-04 05:00:00,17.69,37.53,16.63,30.62,9.15,0.61,22.42,18.22,9.61,0.78,7.65,0.0 +2020-05-04 06:00:00,16.74,35.82,17.94,31.29,9.15,0.61,19.81,19.67,10.29,0.93,7.83,0.0 +2020-05-04 07:00:00,20.8,49.55,19.33,32.24,10.53,0.66,19.55,20.66,10.89,1.16,10.25,0.0 +2020-05-04 08:00:00,27.95,61.76,17.1,32.81,11.78,0.78,27.28,19.57,10.79,1.1,10.02,0.0 +2020-05-04 09:00:00,32.02,69.53,15.97,32.47,12.17,0.7,38.03,18.12,10.13,1.4,9.18,0.0 +2020-05-04 10:00:00,33.43,72.22,15.18,31.92,12.59,0.7,48.79,17.97,9.82,1.15,8.92,0.0 +2020-05-04 11:00:00,31.54,68.68,14.35,32.3,13.52,0.73,59.08,17.93,10.15,1.41,9.59,0.0 +2020-05-04 12:00:00,28.61,65.82,14.26,33.43,13.55,0.78,63.64,18.13,10.75,1.18,8.22,0.0 +2020-05-04 13:00:00,25.98,59.09,13.65,32.91,13.22,0.76,69.4,19.06,11.15,1.26,8.16,0.0 +2020-05-04 14:00:00,24.37,59.06,13.56,32.75,12.85,0.63,74.54,20.66,12.39,1.12,8.8,0.0 +2020-05-04 15:00:00,24.62,54.84,13.6,30.65,12.44,0.66,78.78,22.77,14.21,0.97,7.69,0.0 +2020-05-04 16:00:00,27.0,54.48,13.71,28.46,12.58,0.68,83.56,24.98,16.09,0.75,7.43,0.03 +2020-05-04 17:00:00,24.92,53.91,13.72,27.78,12.08,0.72,86.24,26.53,18.21,0.94,7.13,0.0 +2020-05-04 18:00:00,23.72,51.37,14.79,27.56,11.89,0.7,87.09,10.9,19.44,0.93,6.96,0.0 +2020-05-04 19:00:00,22.11,51.54,17.63,28.64,11.18,0.75,77.32,12.43,20.12,0.99,11.85,0.0 +2020-05-04 20:00:00,29.97,75.12,25.03,30.04,10.98,1.01,53.98,32.94,18.85,1.28,18.95,0.0 +2020-05-04 21:00:00,45.36,110.17,28.65,31.75,13.02,0.95,41.38,34.09,17.54,1.64,20.73,0.0 +2020-05-04 22:00:00,55.73,131.3,28.78,32.67,16.17,1.0,37.01,31.23,15.54,1.9,20.99,0.0 +2020-05-04 23:00:00,63.33,138.75,25.63,32.41,17.54,1.0,34.85,29.07,14.1,2.05,16.72,0.0 +2020-05-05 00:00:00,64.41,136.04,24.19,31.06,18.88,0.95,31.55,27.01,13.03,2.11,17.52,0.01 +2020-05-05 01:00:00,64.34,126.06,23.3,30.35,20.07,0.91,27.48,25.71,13.09,2.35,13.95,0.0 +2020-05-05 02:00:00,68.72,117.77,25.55,31.96,18.49,0.94,19.93,27.55,13.28,2.71,13.06,0.06 +2020-05-05 03:00:00,66.15,116.48,25.17,33.22,18.0,0.97,17.12,27.39,13.5,2.8,20.41,0.06 +2020-05-05 04:00:00,66.16,115.26,25.4,32.27,16.92,1.02,15.43,26.71,13.19,2.77,29.04,0.05 +2020-05-05 05:00:00,71.52,135.93,26.46,32.76,16.23,0.97,14.7,27.83,14.03,3.05,30.02,0.0 +2020-05-05 06:00:00,79.88,131.32,29.27,34.01,16.17,1.03,13.05,31.03,15.55,3.27,20.53,0.1 +2020-05-05 07:00:00,83.91,149.82,27.6,33.95,20.58,1.07,14.97,28.55,14.78,3.48,22.47,0.05 +2020-05-05 08:00:00,84.26,160.92,23.83,33.84,25.07,1.03,30.8,25.32,13.25,3.25,19.6,0.22 +2020-05-05 09:00:00,77.94,149.71,19.17,32.43,23.81,0.89,49.44,22.86,12.11,2.83,18.29,0.04 +2020-05-05 10:00:00,67.58,118.82,15.96,30.51,19.72,0.76,63.29,21.19,12.15,2.16,13.96,0.0 +2020-05-05 11:00:00,50.85,92.25,14.37,30.41,16.62,0.8,72.64,21.25,13.48,1.61,11.98,0.02 +2020-05-05 12:00:00,42.09,84.93,14.47,31.6,15.0,0.74,78.58,22.29,13.38,1.22,9.58,0.0 +2020-05-05 13:00:00,35.28,78.54,13.71,31.28,13.79,0.78,83.71,23.63,15.14,1.11,9.4,0.0 +2020-05-05 14:00:00,33.59,82.3,14.02,31.41,12.52,0.77,87.23,25.95,17.37,1.04,8.3,0.0 +2020-05-05 15:00:00,34.72,80.28,14.39,29.24,12.95,0.67,88.34,28.51,20.27,1.1,8.28,0.0 +2020-05-05 16:00:00,33.58,77.95,14.74,27.76,12.44,0.65,90.47,11.1,21.15,0.99,7.56,0.0 +2020-05-05 17:00:00,31.42,77.19,15.62,26.97,11.37,0.68,94.35,11.31,4.75,0.85,7.58,0.0 +2020-05-05 18:00:00,33.04,81.28,17.23,26.51,11.53,0.74,94.1,12.08,4.96,1.03,7.82,0.0 +2020-05-05 19:00:00,35.42,82.61,19.51,27.83,11.91,0.71,87.37,13.39,4.51,0.93,8.59,0.07 +2020-05-05 20:00:00,40.95,102.89,24.06,29.19,12.53,0.83,65.82,16.51,20.48,1.24,13.53,0.04 +2020-05-05 21:00:00,48.9,142.64,25.79,30.55,14.13,0.92,48.11,33.68,18.66,1.69,15.78,0.0 +2020-05-05 22:00:00,64.08,166.6,28.27,31.02,14.41,1.07,33.94,33.26,16.65,1.97,14.27,0.0 +2020-05-05 23:00:00,71.01,174.36,30.65,30.53,20.58,1.08,28.4,33.23,15.51,2.4,16.63,0.1 +2020-05-06 00:00:00,78.71,177.17,32.29,30.32,19.44,1.11,28.62,33.62,15.46,2.63,20.17,0.11 +2020-05-06 01:00:00,77.19,177.46,27.49,29.26,16.15,0.96,34.91,29.33,13.93,2.56,17.88,0.08 +2020-05-06 02:00:00,67.69,191.74,19.15,28.73,14.18,0.78,37.64,22.42,11.84,2.03,15.25,0.08 +2020-05-06 03:00:00,55.89,223.26,19.89,27.89,14.0,0.7,37.14,22.38,11.68,1.6,15.37,0.22 +2020-05-06 04:00:00,51.37,203.79,19.49,27.29,13.89,0.77,32.79,21.33,10.9,1.73,12.52,0.14 +2020-05-06 05:00:00,51.82,181.26,22.33,28.13,15.45,0.82,23.97,23.49,11.58,1.99,16.61,0.18 +2020-05-06 06:00:00,51.65,166.52,23.41,29.03,14.52,0.84,21.13,23.81,11.28,2.3,18.29,0.0 +2020-05-06 07:00:00,55.62,165.85,22.04,28.76,13.86,0.92,18.15,23.23,11.7,2.86,15.56,0.11 +2020-05-06 08:00:00,55.23,164.32,19.09,28.81,14.28,0.87,24.96,21.4,11.35,2.54,11.82,0.08 +2020-05-06 09:00:00,49.83,162.77,17.52,27.82,14.45,0.81,39.21,20.44,10.81,2.28,10.94,0.0 +2020-05-06 10:00:00,53.23,166.75,17.55,28.03,16.79,0.81,57.61,21.27,11.23,1.89,10.1,0.06 +2020-05-06 11:00:00,63.67,187.0,15.64,30.67,19.07,0.87,71.39,19.92,11.24,2.07,9.74,0.08 +2020-05-06 12:00:00,68.71,206.87,15.2,31.05,16.51,0.72,72.19,21.35,12.36,1.68,8.68,0.0 +2020-05-06 13:00:00,50.34,159.4,15.26,31.05,14.49,0.77,78.62,23.22,14.04,1.45,8.29,0.0 +2020-05-06 14:00:00,44.87,133.93,16.36,30.74,14.04,0.85,79.46,24.71,14.82,1.42,8.78,0.0 +2020-05-06 15:00:00,44.4,139.96,17.51,29.74,14.52,0.75,77.8,26.82,16.0,1.42,9.49,0.0 +2020-05-06 16:00:00,44.48,132.54,16.38,28.63,15.07,0.72,88.96,28.06,17.37,1.26,8.31,0.0 +2020-05-06 17:00:00,45.31,130.08,15.87,27.99,15.14,0.73,97.49,27.77,17.58,1.29,8.22,0.04 +2020-05-06 18:00:00,45.76,130.14,17.13,27.02,14.87,0.83,101.05,12.43,18.53,1.41,10.19,0.02 +2020-05-06 19:00:00,48.45,137.23,23.05,28.55,14.99,0.87,85.99,32.26,18.56,1.68,12.49,0.0 +2020-05-06 20:00:00,58.44,159.15,31.97,31.41,13.82,1.18,56.29,35.65,16.93,2.16,16.47,0.0 +2020-05-06 21:00:00,76.15,186.42,36.26,33.44,14.71,1.27,41.38,36.23,15.19,2.77,19.43,0.1 +2020-05-06 22:00:00,82.43,197.06,35.94,34.14,23.62,1.27,39.17,34.58,13.78,3.03,16.16,0.19 +2020-05-06 23:00:00,81.32,189.87,28.4,30.17,20.8,1.09,48.95,28.09,11.92,2.89,18.72,0.0 +2020-05-07 00:00:00,78.09,188.68,23.67,29.13,21.67,0.95,50.75,24.6,11.25,3.04,17.6,0.05 +2020-05-07 01:00:00,76.4,183.12,18.65,28.85,14.01,0.84,57.71,20.83,10.23,2.59,15.29,0.01 +2020-05-07 02:00:00,62.11,178.08,14.51,28.8,12.38,0.66,65.4,18.07,9.98,2.01,10.98,0.14 +2020-05-07 03:00:00,41.1,91.61,15.94,25.93,17.04,0.64,60.23,21.11,11.8,1.54,10.03,0.0 +2020-05-07 04:00:00,29.32,56.53,14.57,24.37,14.03,0.62,58.89,18.58,10.66,1.35,9.32,0.03 +2020-05-07 05:00:00,21.21,40.96,13.09,23.26,11.64,0.56,64.49,16.73,9.44,1.24,8.29,0.05 +2020-05-07 06:00:00,13.66,29.43,13.23,22.9,11.43,0.55,61.16,16.06,8.76,1.05,7.31,0.08 +2020-05-07 07:00:00,13.14,25.32,14.97,21.77,12.48,0.58,58.18,17.52,9.44,1.08,7.36,0.07 +2020-05-07 08:00:00,13.16,29.03,14.65,21.3,12.58,0.57,55.5,17.52,9.65,1.08,6.44,0.0 +2020-05-07 09:00:00,12.32,38.29,14.27,21.3,12.09,0.6,55.05,17.89,10.33,0.88,6.2,0.06 +2020-05-07 10:00:00,14.75,45.65,14.04,21.52,11.59,0.6,66.96,18.99,11.39,0.92,6.31,0.0 +2020-05-07 11:00:00,18.47,50.09,13.76,23.59,10.95,0.65,75.92,20.36,12.14,1.04,5.48,0.0 +2020-05-07 12:00:00,22.09,57.96,13.5,26.37,10.86,0.64,82.77,22.6,14.03,0.88,5.66,0.0 +2020-05-07 13:00:00,24.75,69.73,13.23,28.02,11.04,0.65,92.64,25.6,17.01,0.89,5.61,0.06 +2020-05-07 14:00:00,25.58,76.02,13.56,27.87,11.07,0.62,94.07,27.22,19.42,0.94,5.26,0.08 +2020-05-07 15:00:00,25.37,72.8,13.89,24.95,11.03,0.6,98.5,10.02,4.65,0.88,4.97,0.03 +2020-05-07 16:00:00,27.75,72.54,13.9,23.3,10.96,0.63,102.47,9.38,4.02,0.86,5.27,0.01 +2020-05-07 17:00:00,27.83,73.1,15.02,22.72,11.35,0.75,108.15,9.53,4.51,0.8,8.12,0.07 +2020-05-07 18:00:00,30.75,78.0,17.16,22.15,11.32,0.75,104.46,10.57,4.16,1.01,11.23,0.0 +2020-05-07 19:00:00,34.09,92.63,23.45,25.0,10.87,0.83,90.74,14.51,4.81,1.09,14.39,0.04 +2020-05-07 20:00:00,44.87,119.44,30.25,27.98,12.93,0.99,74.75,19.18,4.97,1.67,16.81,0.02 +2020-05-07 21:00:00,59.78,146.72,31.37,30.45,16.08,1.1,59.8,20.66,5.05,2.37,18.97,0.05 +2020-05-07 22:00:00,71.67,151.35,31.21,31.37,22.23,1.13,62.11,21.01,21.04,2.93,16.65,0.12 +2020-05-07 23:00:00,76.27,153.27,29.4,29.37,24.69,1.1,53.99,35.52,18.68,3.01,20.75,0.06 +2020-05-08 00:00:00,75.02,152.22,28.97,28.52,20.73,1.04,46.04,33.51,16.72,2.82,17.94,0.1 +2020-05-08 01:00:00,71.6,148.15,28.52,28.69,18.48,0.94,44.13,32.51,15.68,2.79,19.49,0.08 +2020-05-08 02:00:00,66.94,124.2,23.73,29.92,15.4,0.88,41.85,27.94,14.2,2.49,14.6,0.15 +2020-05-08 03:00:00,56.68,104.64,23.74,30.7,12.48,0.84,37.64,27.26,13.69,2.23,19.33,0.18 +2020-05-08 04:00:00,52.03,106.06,23.02,29.86,12.09,0.82,35.42,25.66,12.35,1.97,16.09,0.34 +2020-05-08 05:00:00,49.93,98.74,22.32,29.56,11.52,0.8,37.1,24.8,12.19,1.88,12.96,0.29 +2020-05-08 06:00:00,49.31,98.63,22.3,29.64,11.8,0.79,42.63,24.6,12.25,1.98,12.68,0.27 +2020-05-08 07:00:00,49.59,104.75,22.34,29.35,12.98,0.78,36.07,24.0,11.88,1.97,10.8,0.18 +2020-05-08 08:00:00,49.16,99.7,20.28,28.94,14.17,0.82,45.69,22.92,11.67,2.21,10.2,0.29 +2020-05-08 09:00:00,47.63,106.74,18.52,27.02,14.6,0.82,62.97,22.85,12.24,1.99,9.35,0.11 +2020-05-08 10:00:00,43.83,122.49,17.0,26.28,14.28,0.76,80.94,23.48,13.28,1.77,8.67,0.05 +2020-05-08 11:00:00,40.5,113.42,15.64,25.74,13.27,0.78,94.99,24.96,15.61,1.38,8.21,0.09 +2020-05-08 12:00:00,36.04,105.19,14.58,25.96,11.43,0.7,104.29,27.23,17.61,1.07,7.14,0.0 +2020-05-08 13:00:00,34.3,94.73,15.06,26.48,10.54,0.7,105.68,10.83,19.45,0.89,7.43,0.05 +2020-05-08 14:00:00,35.04,92.64,15.59,26.2,10.07,0.75,109.27,11.06,4.16,0.84,7.98,0.0 +2020-05-08 15:00:00,33.71,92.68,16.48,27.74,10.71,0.73,108.08,11.35,4.38,0.79,8.55,0.0 +2020-05-08 16:00:00,34.98,96.5,17.91,26.34,10.98,0.79,107.12,11.26,3.97,0.77,9.32,0.0 +2020-05-08 17:00:00,37.5,101.38,20.02,25.38,11.67,0.68,105.51,11.82,3.74,0.83,11.61,0.0 +2020-05-08 18:00:00,41.4,110.46,22.22,25.49,12.22,0.77,110.7,13.47,4.13,0.89,19.69,0.0 +2020-05-08 19:00:00,46.04,138.77,26.68,26.18,15.14,0.88,106.65,16.82,4.71,1.15,23.16,0.02 +2020-05-08 20:00:00,54.6,166.38,30.42,27.52,15.76,1.01,87.11,19.15,4.49,1.69,21.28,0.05 +2020-05-08 21:00:00,67.53,190.99,28.61,29.07,16.51,1.07,80.37,18.25,4.06,2.1,18.17,0.1 +2020-05-08 22:00:00,79.54,180.01,23.78,30.24,17.58,0.97,76.65,15.83,4.12,2.11,14.82,0.04 +2020-05-08 23:00:00,73.15,150.23,22.09,30.68,17.32,0.89,75.7,14.95,3.96,2.06,12.26,0.02 +2020-05-09 00:00:00,70.52,135.23,22.74,30.51,16.8,0.92,66.4,15.83,18.88,2.06,10.79,0.1 +2020-05-09 01:00:00,67.87,128.6,21.68,30.74,13.69,0.92,54.94,30.44,16.97,1.99,9.94,0.25 +2020-05-09 02:00:00,63.59,118.09,20.4,32.03,12.9,0.89,50.71,28.1,15.45,1.82,10.62,0.2 +2020-05-09 03:00:00,57.8,104.23,19.16,30.03,11.42,0.83,55.55,27.15,15.21,1.58,22.03,0.14 +2020-05-09 04:00:00,50.88,92.69,18.66,29.49,11.64,0.78,57.12,25.3,13.74,1.43,20.37,0.1 +2020-05-09 05:00:00,49.12,90.82,18.62,28.58,11.91,0.8,54.37,24.55,13.15,1.55,12.94,0.17 +2020-05-09 06:00:00,51.48,98.42,19.91,29.15,11.98,0.85,48.7,25.17,13.18,1.67,10.15,0.1 +2020-05-09 07:00:00,56.48,112.02,22.91,30.14,13.31,0.89,38.75,26.82,13.23,2.1,18.15,0.11 +2020-05-09 08:00:00,62.99,127.04,21.93,30.59,14.29,0.93,43.11,26.69,13.5,2.36,17.41,0.06 +2020-05-09 09:00:00,63.4,140.96,19.15,29.94,14.19,0.9,62.33,26.06,14.26,2.29,12.93,0.12 +2020-05-09 10:00:00,56.84,142.32,16.83,29.74,13.84,0.85,74.55,26.49,15.76,1.84,8.7,0.18 +2020-05-09 11:00:00,50.63,132.33,14.3,30.3,14.28,0.89,85.23,11.21,3.57,1.76,8.46,0.12 +2020-05-09 12:00:00,49.11,128.44,14.0,31.03,13.6,0.88,93.74,11.92,3.97,1.64,8.47,0.09 +2020-05-09 13:00:00,45.7,134.6,13.61,30.94,12.86,0.83,99.89,11.7,3.94,1.51,7.81,0.1 +2020-05-09 14:00:00,49.05,148.04,13.19,30.77,11.97,0.8,102.86,12.09,4.49,1.22,7.68,2.11 +2020-05-09 15:00:00,46.78,131.52,12.37,29.56,12.04,0.72,101.93,11.85,4.85,1.08,7.54,16.26 +2020-05-09 16:00:00,41.42,113.49,12.47,28.67,12.09,0.68,101.97,12.43,5.37,1.01,9.47,3.89 +2020-05-09 17:00:00,38.97,110.18,13.57,28.02,12.31,0.7,95.91,13.5,5.86,0.99,8.44,0.13 +2020-05-09 18:00:00,41.31,118.33,16.47,27.89,12.33,0.79,102.75,16.39,7.04,1.04,10.13,0.16 +2020-05-09 19:00:00,45.43,136.03,20.75,29.26,13.16,0.91,97.85,18.84,7.18,1.55,14.18,0.16 +2020-05-09 20:00:00,58.62,170.67,19.14,31.25,14.01,0.92,92.52,15.62,4.9,1.65,12.5,0.97 +2020-05-09 21:00:00,60.9,160.28,18.05,31.54,15.25,0.93,86.91,14.24,4.03,1.61,10.66,0.1 +2020-05-09 22:00:00,59.62,139.71,16.49,31.8,14.88,0.88,86.17,13.4,4.04,1.49,10.76,0.34 +2020-05-09 23:00:00,61.86,131.61,17.16,31.39,15.12,0.83,77.52,14.34,4.6,1.47,9.78,0.03 +2020-05-10 00:00:00,59.59,125.55,15.66,30.12,13.57,0.8,76.59,13.29,4.39,1.5,8.08,0.35 +2020-05-10 01:00:00,56.57,113.85,14.3,29.64,12.22,0.73,75.43,11.93,3.84,1.37,8.12,0.19 +2020-05-10 02:00:00,53.09,104.14,14.15,31.4,12.13,0.76,68.2,11.88,3.84,1.28,8.53,0.07 +2020-05-10 03:00:00,50.67,100.75,15.36,31.45,12.02,0.84,64.73,12.63,3.91,1.35,14.21,0.08 +2020-05-10 04:00:00,53.05,106.97,14.13,30.22,12.12,0.83,60.95,11.94,3.9,1.44,8.22,0.08 +2020-05-10 05:00:00,57.7,114.88,14.15,29.9,13.49,0.82,58.42,11.9,3.93,1.68,9.42,0.15 +2020-05-10 06:00:00,60.71,122.31,14.93,30.08,13.29,0.81,52.51,12.54,4.13,1.83,8.83,0.38 +2020-05-10 07:00:00,61.12,126.19,15.62,29.81,13.06,0.83,47.23,12.93,4.07,1.75,8.78,0.14 +2020-05-10 08:00:00,60.82,126.62,14.68,30.08,12.99,0.82,53.57,12.4,4.06,1.8,8.5,0.12 +2020-05-10 09:00:00,58.77,127.86,14.83,30.16,12.72,0.83,63.25,12.49,4.12,1.71,7.99,0.22 +2020-05-10 10:00:00,57.67,136.0,14.9,30.57,12.54,0.85,69.46,12.63,4.26,1.67,7.48,0.25 +2020-05-10 11:00:00,60.42,142.09,14.59,31.55,13.05,0.87,78.58,12.34,4.09,1.68,7.28,0.07 +2020-05-10 12:00:00,73.84,216.22,14.22,31.77,12.26,0.74,73.31,11.9,3.85,1.63,10.64,0.0 +2020-05-10 13:00:00,82.87,399.4,12.17,28.44,10.03,0.54,69.85,10.98,4.1,1.04,9.66,0.0 +2020-05-10 14:00:00,25.4,97.58,13.11,27.53,9.61,0.54,72.91,11.86,4.45,0.67,10.17,0.69 +2020-05-10 15:00:00,15.45,53.27,13.51,26.61,9.78,0.57,72.56,21.29,13.53,0.64,11.58,0.03 +2020-05-10 16:00:00,14.11,49.0,15.54,26.16,11.59,0.61,71.12,22.89,15.04,0.76,9.29,0.07 +2020-05-10 17:00:00,13.83,44.11,14.58,25.28,11.97,0.61,75.13,13.74,5.51,0.81,9.34,0.1 +2020-05-10 18:00:00,12.06,44.1,15.14,24.69,13.52,0.6,79.34,12.96,4.57,0.73,7.9,0.0 +2020-05-10 19:00:00,11.63,36.93,17.3,25.18,12.43,0.65,71.34,14.04,4.19,0.8,8.07,0.0 +2020-05-10 20:00:00,18.29,49.78,23.36,26.56,12.1,0.75,48.98,18.34,4.75,1.05,8.25,0.0 +2020-05-10 21:00:00,33.34,69.23,27.75,27.35,11.24,0.82,38.88,20.82,5.13,1.36,10.59,0.32 +2020-05-10 22:00:00,39.53,76.25,26.68,27.39,9.93,0.81,44.84,20.09,5.43,1.33,10.24,0.1 +2020-05-10 23:00:00,32.57,66.36,24.31,27.0,10.73,0.8,41.74,19.52,6.05,1.29,10.25,0.09 +2020-05-11 00:00:00,30.29,59.81,21.71,26.52,12.16,0.75,49.74,17.11,5.12,1.4,10.41,0.08 +2020-05-11 01:00:00,30.72,55.93,20.7,26.25,12.42,0.67,47.53,16.24,4.83,1.48,13.99,0.07 +2020-05-11 02:00:00,34.35,57.84,19.61,27.74,13.45,0.65,45.22,15.61,4.77,1.74,16.36,0.01 +2020-05-11 03:00:00,33.14,55.58,19.98,28.08,12.42,0.69,44.5,16.04,5.5,1.7,11.43,0.04 +2020-05-11 04:00:00,31.94,50.99,18.03,26.56,11.86,0.66,44.68,14.56,4.72,1.63,8.66,0.0 +2020-05-11 05:00:00,31.43,50.88,17.62,26.0,11.98,0.66,37.66,14.4,5.03,1.57,8.66,0.43 +2020-05-11 06:00:00,35.13,54.16,18.86,26.53,11.85,0.64,36.02,15.52,5.19,1.75,9.73,0.07 +2020-05-11 07:00:00,40.33,61.7,19.73,26.77,12.86,0.68,35.99,16.16,5.4,1.85,9.84,1.78 +2020-05-11 08:00:00,40.43,71.43,19.58,27.06,14.12,0.72,33.95,16.87,6.39,1.91,8.7,0.07 +2020-05-11 09:00:00,40.66,87.71,19.35,26.95,13.75,0.77,41.71,16.21,5.59,1.93,14.06,0.05 +2020-05-11 10:00:00,40.18,88.86,19.11,26.88,13.44,0.74,55.64,15.31,4.77,1.7,8.07,0.12 +2020-05-11 11:00:00,39.88,98.05,17.88,27.08,13.51,0.77,70.67,14.13,4.33,1.55,8.61,0.03 +2020-05-11 12:00:00,43.79,129.72,16.39,27.41,12.43,0.71,84.96,13.54,4.3,1.46,8.52,0.07 +2020-05-11 13:00:00,48.25,135.7,16.14,28.03,11.56,0.79,94.17,13.27,4.16,1.34,8.34,0.1 +2020-05-11 14:00:00,43.23,108.97,16.1,28.84,11.99,0.72,99.57,13.18,4.18,1.31,8.26,0.0 +2020-05-11 15:00:00,43.88,111.56,16.31,28.8,11.94,0.77,97.57,13.47,4.25,1.26,8.6,0.91 +2020-05-11 16:00:00,44.01,116.51,16.66,28.77,11.32,0.7,98.59,13.75,4.42,1.23,8.7,0.0 +2020-05-11 17:00:00,63.54,117.62,16.65,28.56,10.96,0.72,102.86,13.36,4.03,1.17,9.48,0.0 +2020-05-11 18:00:00,55.04,117.14,17.64,28.54,10.8,0.74,100.5,16.53,6.61,1.17,9.43,1.95 +2020-05-11 19:00:00,47.02,117.18,20.7,29.2,11.21,0.94,92.86,15.4,3.7,1.27,9.5,0.01 +2020-05-11 20:00:00,50.4,124.22,23.42,30.12,13.18,0.93,77.54,17.09,3.86,1.44,10.93,0.27 +2020-05-11 21:00:00,53.09,125.84,24.67,31.07,14.59,0.91,66.47,17.82,3.94,1.66,14.39,0.12 +2020-05-11 22:00:00,57.59,126.06,24.46,31.62,15.06,0.97,51.88,18.03,4.36,1.74,15.17,0.16 +2020-05-11 23:00:00,59.97,120.23,27.31,31.77,14.88,0.98,40.19,20.83,5.82,1.85,15.23,0.23 +2020-05-12 00:00:00,60.24,116.89,28.1,31.49,11.62,0.92,34.27,21.24,5.64,1.89,19.41,0.09 +2020-05-12 01:00:00,57.53,111.82,25.87,31.02,11.86,0.86,33.24,19.78,5.43,1.77,16.53,0.23 +2020-05-12 02:00:00,53.66,104.46,22.03,32.98,17.88,0.78,33.74,17.18,4.94,1.75,16.22,0.27 +2020-05-12 03:00:00,52.72,97.21,19.67,32.41,14.93,0.79,43.42,15.66,4.77,1.92,19.81,0.18 +2020-05-12 04:00:00,51.66,92.93,17.34,30.75,16.14,0.74,43.29,13.83,4.4,1.93,14.08,0.1 +2020-05-12 05:00:00,35.37,70.52,18.09,28.47,13.4,0.66,44.6,14.43,4.59,1.7,14.46,0.55 +2020-05-12 06:00:00,30.55,73.13,17.18,28.4,13.14,0.66,45.56,13.35,4.39,1.62,11.89,0.15 +2020-05-12 07:00:00,34.4,86.66,17.82,28.19,13.56,0.68,48.11,14.3,4.7,1.76,10.46,1.17 +2020-05-12 08:00:00,39.16,92.32,18.98,28.65,13.99,0.76,44.78,15.21,4.77,1.61,9.81,0.1 +2020-05-12 09:00:00,44.77,100.73,20.2,28.97,15.08,0.77,49.27,15.98,4.91,1.66,9.83,0.17 +2020-05-12 10:00:00,42.86,100.11,20.88,28.63,15.3,0.81,59.31,16.42,4.8,1.55,9.87,0.02 +2020-05-12 11:00:00,41.91,99.29,18.25,28.27,15.83,0.78,75.26,14.63,4.34,1.37,9.42,0.04 +2020-05-12 12:00:00,38.02,93.22,15.22,28.29,14.71,0.7,89.24,12.44,3.94,1.25,8.63,0.06 +2020-05-12 13:00:00,35.36,84.0,14.17,28.62,13.39,0.71,91.24,11.61,3.68,1.16,8.5,0.17 +2020-05-12 14:00:00,32.0,76.12,13.18,28.6,13.17,0.73,97.42,11.1,3.66,1.08,8.21,1.72 +2020-05-12 15:00:00,31.29,72.35,13.07,28.3,12.21,0.68,92.71,11.21,3.92,0.99,8.72,0.0 +2020-05-12 16:00:00,30.64,69.08,12.6,27.6,12.09,0.62,94.52,11.38,4.39,0.93,11.39,0.0 +2020-05-12 17:00:00,29.1,69.57,12.93,27.55,12.12,0.66,94.96,10.92,3.8,0.83,12.34,0.03 +2020-05-12 18:00:00,28.44,70.93,13.69,27.43,12.0,0.6,94.36,11.2,3.76,0.87,11.55,0.0 +2020-05-12 19:00:00,32.46,81.57,18.87,27.78,12.54,0.69,85.31,14.26,4.03,1.07,15.34,0.0 +2020-05-12 20:00:00,44.32,107.1,21.32,30.05,12.05,0.79,74.41,16.07,4.34,1.39,14.35,0.0 +2020-05-12 21:00:00,56.79,126.78,21.1,31.08,13.35,0.85,64.87,16.01,4.38,1.68,14.47,0.0 +2020-05-12 22:00:00,64.31,132.12,21.7,31.31,15.63,0.97,54.56,16.28,4.21,2.08,14.93,1.21 +2020-05-12 23:00:00,69.06,136.59,21.49,31.45,16.06,0.9,49.97,16.31,4.41,2.15,14.03,0.14 +2020-05-13 00:00:00,68.36,131.19,21.46,31.14,16.38,0.9,41.54,16.58,4.61,2.25,13.21,0.1 +2020-05-13 01:00:00,70.09,126.56,22.24,31.21,16.25,0.92,38.28,17.09,4.6,2.29,12.55,0.17 +2020-05-13 02:00:00,68.33,122.28,22.51,32.77,14.79,0.88,31.05,17.37,4.92,2.09,13.46,0.09 +2020-05-13 03:00:00,66.58,114.58,24.58,33.82,13.06,0.93,28.9,19.19,5.58,2.06,12.91,0.36 +2020-05-13 04:00:00,64.79,110.22,23.53,31.91,12.27,0.9,26.98,18.35,5.37,1.97,13.4,0.21 +2020-05-13 05:00:00,62.82,107.64,24.05,30.82,12.22,0.91,24.67,19.2,6.06,1.96,15.11,0.18 +2020-05-13 06:00:00,71.74,121.03,22.53,32.45,15.12,0.92,25.69,18.44,6.16,2.1,21.12,0.19 +2020-05-13 07:00:00,96.69,170.61,19.59,33.33,16.56,0.97,31.66,16.38,5.86,2.12,14.48,0.2 +2020-05-13 08:00:00,94.91,202.39,19.05,32.95,17.17,0.94,32.37,15.9,5.56,2.08,13.53,0.22 +2020-05-13 09:00:00,82.74,223.04,18.21,31.31,15.82,0.88,41.49,15.28,5.33,1.82,10.91,0.09 +2020-05-13 10:00:00,72.86,237.7,18.35,30.47,15.85,0.86,48.71,15.13,5.0,1.6,12.15,0.06 +2020-05-13 11:00:00,69.79,221.44,18.19,30.4,15.47,0.84,59.56,14.88,4.99,1.7,15.0,1.57 +2020-05-13 12:00:00,65.12,205.59,17.85,31.51,17.44,0.83,62.82,14.8,4.97,1.65,16.66,0.45 +2020-05-13 13:00:00,63.77,186.97,17.4,32.21,19.32,0.81,72.78,14.44,4.77,1.48,14.99,0.27 +2020-05-13 14:00:00,62.94,172.34,16.57,32.83,19.89,0.82,83.58,13.55,4.27,1.44,12.17,0.0 +2020-05-13 15:00:00,58.73,158.32,16.05,32.52,17.42,0.85,93.13,13.08,4.03,1.34,12.53,0.0 +2020-05-13 16:00:00,55.3,145.01,15.87,31.65,16.62,0.77,92.96,12.91,4.06,1.26,15.34,0.0 +2020-05-13 17:00:00,50.2,133.46,14.85,30.63,15.87,0.75,92.18,12.0,3.76,1.19,15.46,0.09 +2020-05-13 18:00:00,47.9,129.29,16.6,31.77,15.67,0.8,90.87,13.04,3.87,1.27,11.07,1.47 +2020-05-13 19:00:00,56.28,147.19,21.65,33.67,15.5,0.91,77.81,16.01,4.69,1.47,13.01,2.69 +2020-05-13 20:00:00,65.38,162.43,29.09,33.28,14.48,1.06,55.17,21.07,5.35,1.96,13.66,0.3 +2020-05-13 21:00:00,79.63,168.18,31.31,34.85,12.94,1.11,41.42,23.28,6.2,2.24,18.05,0.1 +2020-05-13 22:00:00,79.92,167.66,31.61,34.22,12.08,1.08,31.83,22.64,5.78,2.06,25.95,0.37 +2020-05-13 23:00:00,76.32,155.68,28.9,33.26,11.67,1.01,27.3,21.26,6.26,2.02,17.94,0.27 +2020-05-14 00:00:00,72.09,136.91,29.82,32.92,11.54,1.0,24.39,22.31,6.7,2.1,15.47,0.53 +2020-05-14 01:00:00,73.62,141.75,31.31,32.69,10.75,0.92,17.24,24.98,8.56,2.16,15.19,0.48 +2020-05-14 02:00:00,64.35,121.54,30.27,34.59,12.05,0.87,16.62,24.78,9.08,2.09,15.34,0.42 +2020-05-14 03:00:00,59.48,110.68,31.32,32.95,10.91,0.85,16.43,26.28,10.63,2.0,15.19,0.36 +2020-05-14 04:00:00,56.61,100.2,30.52,31.59,11.06,0.84,13.1,26.01,10.47,1.94,16.91,0.41 +2020-05-14 05:00:00,56.65,100.12,32.47,30.45,10.37,0.87,10.83,30.71,14.59,1.86,19.58,0.37 +2020-05-14 06:00:00,56.97,103.78,33.61,30.4,13.48,0.96,10.43,34.76,18.36,2.26,20.21,0.36 +2020-05-14 07:00:00,57.8,111.81,36.79,31.46,15.12,1.05,12.69,39.24,21.69,2.47,26.17,0.24 +2020-05-14 08:00:00,60.98,127.97,35.9,32.28,17.97,1.04,18.63,33.0,14.52,2.31,24.28,0.42 +2020-05-14 09:00:00,61.56,142.7,29.05,31.46,16.09,0.96,33.04,25.75,10.84,2.23,17.67,0.27 +2020-05-14 10:00:00,58.26,146.34,24.03,31.59,14.88,0.92,51.2,21.05,8.2,1.87,14.83,0.33 +2020-05-14 11:00:00,62.71,153.99,20.84,31.26,15.98,0.94,77.69,17.61,6.52,1.67,13.12,0.08 +2020-05-14 12:00:00,66.09,162.17,17.74,32.06,16.38,0.87,92.56,14.5,5.24,1.55,11.41,0.15 +2020-05-14 13:00:00,59.79,143.8,15.98,30.95,15.19,0.84,90.13,13.08,4.44,1.36,10.06,0.18 +2020-05-14 14:00:00,51.98,132.05,15.38,30.45,13.38,0.82,94.79,12.62,4.56,1.31,9.3,0.17 +2020-05-14 15:00:00,49.05,123.93,14.69,30.06,12.46,0.75,99.74,12.46,4.72,1.24,8.61,0.13 +2020-05-14 16:00:00,42.46,126.49,13.57,29.52,11.05,0.73,107.73,12.55,5.78,1.12,9.76,0.14 +2020-05-14 17:00:00,40.77,127.09,15.71,28.4,10.5,0.79,101.56,13.68,5.87,1.0,9.76,0.11 +2020-05-14 18:00:00,48.1,168.34,18.27,29.62,10.43,0.83,79.57,15.76,5.92,1.23,14.67,0.12 +2020-05-14 19:00:00,67.4,247.48,16.29,29.51,9.73,0.83,66.24,14.69,6.66,1.21,11.77,0.06 +2020-05-14 20:00:00,55.81,122.04,18.07,28.99,11.07,0.88,63.1,16.44,7.66,1.26,13.38,0.0 +2020-05-14 21:00:00,47.7,66.92,24.5,28.36,12.93,0.88,50.97,18.81,6.1,1.35,12.84,0.04 +2020-05-14 22:00:00,40.33,55.81,31.58,28.81,13.57,0.93,34.44,24.31,8.19,1.35,12.8,0.0 +2020-05-14 23:00:00,37.56,62.75,35.08,29.4,13.27,0.98,22.04,29.3,11.69,1.7,19.89,0.0 +2020-05-15 00:00:00,44.15,72.56,35.65,29.25,11.42,0.99,17.85,32.46,14.74,1.96,20.29,0.17 +2020-05-15 01:00:00,54.39,93.32,24.77,32.83,12.48,0.9,29.25,21.8,8.6,2.07,19.36,0.15 +2020-05-15 02:00:00,71.17,121.44,15.73,31.78,11.66,0.73,38.19,14.14,6.19,1.45,9.68,0.0 +2020-05-15 03:00:00,36.19,79.28,17.53,29.8,11.76,0.75,31.83,14.74,5.93,1.24,10.96,0.08 +2020-05-15 04:00:00,43.34,87.2,18.78,28.28,12.45,0.74,23.33,15.05,6.0,1.4,12.11,0.06 +2020-05-15 05:00:00,43.05,87.03,18.95,25.64,12.42,0.73,22.57,15.71,6.23,1.59,13.57,0.0 +2020-05-15 06:00:00,36.48,76.18,22.39,24.87,12.0,0.65,21.84,18.37,7.06,1.27,13.91,0.0 +2020-05-15 07:00:00,28.8,67.26,23.45,25.2,11.77,0.7,21.01,19.75,7.99,1.54,13.73,0.0 +2020-05-15 08:00:00,32.12,74.27,22.97,25.97,14.99,0.74,29.51,19.33,7.64,1.61,11.85,0.1 +2020-05-15 09:00:00,37.76,87.54,22.72,26.51,19.93,0.75,41.58,18.96,7.05,1.56,12.58,0.02 +2020-05-15 10:00:00,44.82,93.5,20.41,26.38,22.33,0.79,58.0,16.7,6.12,1.43,11.14,0.0 +2020-05-15 11:00:00,42.12,86.03,18.95,25.99,19.1,0.81,69.19,15.37,5.42,1.32,11.09,0.08 +2020-05-15 12:00:00,35.39,84.64,17.53,25.99,14.63,0.71,78.86,14.3,5.05,1.25,18.14,0.0 +2020-05-15 13:00:00,31.92,91.96,16.48,26.75,11.99,0.71,89.39,13.53,4.83,1.03,15.5,0.02 +2020-05-15 14:00:00,33.9,104.22,16.07,27.46,10.87,0.79,94.16,13.32,4.7,1.07,10.57,0.01 +2020-05-15 15:00:00,39.26,113.5,16.31,26.76,9.97,0.66,87.4,13.85,5.34,0.83,7.36,0.23 +2020-05-15 16:00:00,37.32,107.43,16.58,26.26,9.25,0.6,95.74,14.27,5.64,0.82,7.0,0.06 +2020-05-15 17:00:00,32.4,92.39,16.36,24.69,9.83,0.58,89.06,14.72,6.47,0.71,6.31,0.01 +2020-05-15 18:00:00,28.01,80.27,19.13,24.22,9.94,0.66,88.84,16.75,7.16,0.82,9.42,0.0 +2020-05-15 19:00:00,32.15,91.18,27.88,24.11,10.8,0.82,75.4,22.67,8.08,1.02,8.97,0.0 +2020-05-15 20:00:00,41.43,116.6,34.97,25.35,12.9,1.11,60.1,25.65,6.95,1.65,13.02,0.0 +2020-05-15 21:00:00,63.86,147.39,36.97,28.81,16.18,1.32,45.84,25.45,5.79,2.07,14.1,2.89 +2020-05-15 22:00:00,117.87,179.83,41.1,31.55,19.27,1.38,34.61,27.89,6.25,2.1,15.57,1.24 +2020-05-15 23:00:00,130.71,211.23,41.05,32.99,21.05,1.46,30.47,28.87,6.9,2.1,16.11,0.17 +2020-05-16 00:00:00,142.44,235.06,39.15,34.07,23.09,1.34,27.33,28.78,7.67,2.17,16.26,0.23 +2020-05-16 01:00:00,166.58,258.89,37.62,34.86,23.9,1.34,25.46,28.02,7.33,2.32,15.19,0.01 +2020-05-16 02:00:00,172.13,258.94,34.29,35.21,24.32,1.24,28.47,25.87,7.27,2.2,13.69,0.17 +2020-05-16 03:00:00,150.14,225.8,29.58,32.61,19.29,1.17,33.73,22.67,6.97,2.13,12.75,0.09 +2020-05-16 04:00:00,131.42,193.33,28.06,31.78,20.06,1.12,39.83,21.42,6.55,2.05,12.24,0.15 +2020-05-16 05:00:00,118.38,179.77,25.63,30.77,20.15,1.04,45.01,19.42,5.88,1.95,11.62,0.07 +2020-05-16 06:00:00,105.14,168.14,26.53,29.88,18.91,0.99,40.86,20.33,6.82,1.74,10.63,0.05 +2020-05-16 07:00:00,92.73,153.24,27.62,31.21,21.54,1.0,38.62,20.85,6.52,1.94,11.23,0.0 +2020-05-16 08:00:00,96.9,166.14,23.71,31.75,22.75,0.99,53.93,18.53,5.86,1.85,9.97,0.0 +2020-05-16 09:00:00,91.35,157.44,21.47,30.41,20.01,0.92,74.38,16.63,5.26,1.83,8.91,0.06 +2020-05-16 10:00:00,73.57,139.07,19.73,29.49,17.16,0.9,91.26,15.38,5.2,1.51,9.62,2.11 +2020-05-16 11:00:00,59.27,121.7,18.34,26.84,15.12,0.9,96.37,14.48,4.9,1.3,9.03,0.13 +2020-05-16 12:00:00,46.32,105.93,16.7,24.83,13.45,0.87,96.22,13.25,4.45,1.0,9.0,0.01 +2020-05-16 13:00:00,36.51,90.73,15.65,23.6,10.91,0.8,93.61,12.7,4.65,0.92,10.18,0.0 +2020-05-16 14:00:00,30.3,83.04,15.43,23.09,9.81,0.71,97.15,12.37,4.1,0.94,5.99,0.0 +2020-05-16 15:00:00,34.39,81.61,15.91,22.61,9.76,0.7,96.12,13.03,4.84,0.9,6.32,0.0 +2020-05-16 16:00:00,35.42,82.34,15.77,21.95,9.2,0.69,92.5,13.15,4.96,0.84,8.78,0.0 +2020-05-16 17:00:00,31.37,83.37,16.21,21.32,9.12,0.73,98.25,13.44,5.63,0.95,12.28,0.09 +2020-05-16 18:00:00,31.49,94.53,17.86,21.69,9.2,0.74,95.13,15.43,7.05,0.9,8.99,0.0 +2020-05-16 19:00:00,32.67,106.11,24.32,21.46,9.85,0.82,83.09,19.98,7.63,1.0,9.04,0.0 +2020-05-16 20:00:00,42.77,129.93,35.72,22.88,11.88,1.07,58.02,26.18,7.33,1.66,13.8,0.17 +2020-05-16 21:00:00,60.7,162.57,40.81,24.79,13.8,1.19,42.52,28.32,6.5,2.08,16.86,0.04 +2020-05-16 22:00:00,82.29,171.66,41.32,27.34,16.68,1.23,35.64,28.08,5.88,2.21,16.32,0.05 +2020-05-16 23:00:00,100.49,193.77,40.65,28.45,18.6,1.2,31.33,29.1,7.28,2.24,20.62,0.19 +2020-05-17 00:00:00,116.66,213.3,42.07,28.31,20.21,1.25,25.3,32.25,9.72,2.4,20.7,0.25 +2020-05-17 01:00:00,128.74,231.36,44.52,29.4,20.72,1.24,18.28,39.63,17.06,2.51,22.65,0.22 +2020-05-17 02:00:00,132.95,235.85,42.86,31.85,19.95,1.29,16.26,38.83,16.8,2.8,26.93,0.33 +2020-05-17 03:00:00,139.14,230.68,41.92,29.63,19.55,1.23,18.8,36.2,14.06,2.96,23.11,18.06 +2020-05-17 04:00:00,137.85,227.35,40.72,30.03,22.65,1.23,21.03,33.84,12.19,2.58,21.35,1.4 +2020-05-17 05:00:00,144.26,237.33,41.13,30.87,27.69,1.26,15.95,34.92,13.14,2.69,19.73,0.37 +2020-05-17 06:00:00,154.04,246.14,41.19,32.74,30.55,1.27,15.99,34.55,13.21,2.85,19.73,0.35 +2020-05-17 07:00:00,170.15,273.97,41.64,35.29,35.16,1.35,20.17,34.44,13.19,3.02,21.42,0.55 +2020-05-17 08:00:00,187.37,297.38,38.13,36.98,39.91,1.32,48.31,30.45,9.59,3.15,18.22,1.0 +2020-05-17 09:00:00,176.04,276.29,31.13,33.99,36.28,1.15,79.88,24.13,7.17,2.6,14.34,0.21 +2020-05-17 10:00:00,133.1,219.25,24.47,30.25,28.3,1.01,96.51,18.9,5.68,2.38,12.71,4.86 +2020-05-17 11:00:00,87.48,160.29,19.82,27.22,21.3,0.85,108.04,15.79,5.31,1.8,11.48,2.19 +2020-05-17 12:00:00,61.51,131.06,17.45,25.82,16.21,0.8,108.99,14.3,4.85,1.31,9.12,0.39 +2020-05-17 13:00:00,47.07,108.57,15.85,25.56,13.9,0.71,110.05,13.77,5.34,1.25,7.65,4.59 +2020-05-17 14:00:00,40.73,101.46,14.56,25.34,13.19,0.67,100.83,13.79,6.43,0.95,6.41,4.76 +2020-05-17 15:00:00,38.74,106.51,15.32,25.42,11.67,0.65,105.89,14.47,6.54,1.01,6.71,4.52 +2020-05-17 16:00:00,40.26,104.23,18.18,26.7,13.53,0.77,102.98,16.7,7.42,1.19,9.54,2.14 +2020-05-17 17:00:00,44.33,110.2,19.92,26.2,11.42,0.8,101.44,17.79,7.35,1.12,11.68,0.0 +2020-05-17 18:00:00,47.22,114.94,27.33,25.79,11.82,0.88,89.29,22.49,8.71,1.34,11.05,0.0 +2020-05-17 19:00:00,50.2,137.19,30.56,25.04,12.7,0.94,75.41,25.2,9.77,1.62,13.5,0.01 +2020-05-17 20:00:00,51.58,167.48,32.29,24.91,12.35,1.05,61.94,24.42,7.37,1.61,12.92,0.13 +2020-05-17 21:00:00,62.65,184.91,40.72,26.54,12.37,1.15,39.33,28.05,6.67,1.82,15.52,0.18 +2020-05-17 22:00:00,79.9,186.87,43.58,27.19,15.17,1.26,28.98,29.61,6.89,2.42,18.08,0.2 +2020-05-17 23:00:00,95.07,191.06,41.75,29.27,17.93,1.21,25.28,29.78,7.22,2.42,19.48,4.2 +2020-05-18 00:00:00,93.97,186.46,43.41,30.74,18.68,1.19,17.76,33.45,10.11,2.85,17.91,0.0 +2020-05-18 01:00:00,105.66,200.51,44.3,31.48,18.64,1.25,12.91,40.28,17.84,2.71,21.84,0.1 +2020-05-18 02:00:00,117.07,211.61,43.9,33.15,20.34,1.26,11.8,43.65,22.87,2.86,22.47,0.2 +2020-05-18 03:00:00,125.41,220.99,42.38,34.73,26.31,1.24,17.34,38.1,16.56,3.52,27.03,0.3 +2020-05-18 04:00:00,150.5,250.5,40.03,35.49,36.06,1.25,19.7,34.23,13.43,3.11,26.58,0.12 +2020-05-18 05:00:00,171.51,279.03,37.62,35.24,36.07,1.25,14.99,32.78,13.31,3.2,25.07,13.75 +2020-05-18 06:00:00,165.2,262.28,38.97,34.94,31.74,1.25,13.14,34.42,14.51,3.16,22.41,13.27 +2020-05-18 07:00:00,160.82,255.14,35.97,35.3,36.73,1.21,19.98,30.02,11.56,3.7,21.32,14.61 +2020-05-18 08:00:00,159.31,250.46,32.6,36.25,45.05,1.25,33.68,26.79,9.91,3.57,15.8,11.22 +2020-05-18 09:00:00,156.66,262.69,30.94,34.99,40.05,1.25,57.09,24.34,7.82,3.45,12.86,11.59 +2020-05-18 10:00:00,154.47,259.72,30.21,33.44,32.44,1.26,87.03,23.01,6.37,3.11,13.45,0.0 +2020-05-18 11:00:00,134.86,241.06,28.53,30.97,27.68,1.21,107.38,21.18,5.96,2.92,12.87,0.14 +2020-05-18 12:00:00,109.14,221.01,23.1,27.77,22.32,1.05,108.94,17.95,5.14,2.31,12.48,0.0 +2020-05-18 13:00:00,80.45,168.07,19.19,24.97,15.05,0.85,97.3,15.8,5.92,1.57,15.36,0.0 +2020-05-18 14:00:00,54.32,126.77,16.79,22.52,11.62,0.76,96.97,14.93,6.03,1.35,11.81,0.07 +2020-05-18 15:00:00,38.2,103.45,16.6,21.61,9.56,0.69,98.93,15.44,7.15,1.07,9.79,0.03 +2020-05-18 16:00:00,34.5,102.68,17.78,21.03,9.19,0.67,99.19,16.24,8.02,0.97,13.24,0.0 +2020-05-18 17:00:00,34.24,103.16,19.01,20.88,9.02,0.68,98.99,17.93,8.68,0.91,11.26,0.12 +2020-05-18 18:00:00,36.45,108.05,23.03,22.98,8.87,0.76,93.37,20.76,9.34,0.91,11.01,0.01 +2020-05-18 19:00:00,37.72,111.43,33.78,21.82,10.34,0.89,74.39,27.53,9.97,1.26,11.65,0.06 +2020-05-18 20:00:00,47.84,140.35,48.22,22.27,12.47,1.17,43.53,37.67,12.07,1.97,14.35,0.14 +2020-05-18 21:00:00,69.25,166.41,56.29,26.79,15.24,1.4,25.87,44.37,14.15,2.43,19.31,0.28 +2020-05-18 22:00:00,92.94,191.31,55.41,27.61,17.81,1.5,19.88,43.83,14.74,2.49,26.95,0.07 +2020-05-18 23:00:00,93.87,201.11,56.09,28.33,19.44,1.54,15.11,47.94,19.87,2.77,26.97,0.33 +2020-05-19 00:00:00,113.04,217.02,54.65,29.67,21.36,1.57,12.76,54.37,26.33,2.85,24.41,0.59 +2020-05-19 01:00:00,119.5,227.25,54.02,30.68,22.43,1.53,10.87,51.6,24.73,3.34,31.11,0.55 +2020-05-19 02:00:00,136.55,245.72,50.9,33.25,24.54,1.57,11.55,48.69,21.73,3.24,29.14,0.57 +2020-05-19 03:00:00,147.65,255.9,50.33,33.07,23.19,1.56,10.0,48.74,22.86,3.5,25.48,6.72 +2020-05-19 04:00:00,148.68,252.94,50.47,34.61,22.94,1.56,9.92,54.1,30.28,3.52,27.17,0.49 +2020-05-19 05:00:00,147.41,258.35,49.74,34.85,23.93,1.58,10.05,54.15,32.11,3.62,32.27,6.71 +2020-05-19 06:00:00,156.11,272.43,48.32,36.65,25.84,1.62,9.69,55.94,33.18,3.92,29.91,12.65 +2020-05-19 07:00:00,181.46,297.98,53.46,38.62,26.99,1.81,12.32,60.84,35.62,4.32,32.23,0.6 +2020-05-19 08:00:00,206.12,327.9,63.5,41.43,30.91,1.86,29.48,54.3,21.48,4.26,32.23,0.57 +2020-05-19 09:00:00,199.68,342.14,61.72,39.21,31.14,1.72,71.67,45.89,12.63,4.07,28.77,0.31 +2020-05-19 10:00:00,162.46,292.53,46.92,33.35,26.68,1.38,103.89,34.86,9.01,3.28,23.6,1.29 +2020-05-19 11:00:00,120.92,231.2,34.77,30.05,21.82,1.22,109.38,25.74,6.77,2.9,18.23,0.27 +2020-05-19 12:00:00,95.33,183.92,25.36,27.23,18.75,1.01,96.57,20.32,6.7,2.21,16.31,1.51 +2020-05-19 13:00:00,61.39,138.14,19.03,24.54,12.61,0.79,103.93,16.93,6.88,1.6,15.51,0.12 +2020-05-19 14:00:00,40.82,110.38,15.8,24.07,10.67,0.73,103.47,15.32,7.65,1.2,14.05,0.11 +2020-05-19 15:00:00,35.54,96.35,16.45,23.62,8.8,0.67,95.48,16.39,8.23,1.11,10.49,1.75 +2020-05-19 16:00:00,30.91,89.42,18.72,23.88,8.66,0.71,98.4,19.01,9.43,1.11,14.42,5.9 +2020-05-19 17:00:00,34.2,99.74,20.97,24.54,11.24,0.78,103.44,21.1,10.5,1.21,12.47,0.0 +2020-05-19 18:00:00,37.24,122.28,27.62,24.54,14.0,0.84,97.37,25.41,11.64,1.3,13.21,0.28 +2020-05-19 19:00:00,43.65,149.0,36.82,26.4,17.37,1.03,95.59,29.93,10.58,1.71,19.62,0.1 +2020-05-19 20:00:00,56.85,180.72,45.87,28.57,21.22,1.16,71.26,33.82,9.95,1.98,25.11,0.15 +2020-05-19 21:00:00,77.02,182.02,59.58,29.17,21.96,1.48,42.22,43.97,12.02,2.77,23.98,0.1 +2020-05-19 22:00:00,105.94,213.5,62.54,31.44,21.07,1.62,30.7,46.46,13.32,3.57,25.39,0.22 +2020-05-19 23:00:00,100.54,220.71,56.58,30.4,21.62,1.52,29.24,45.85,16.69,3.45,27.39,0.09 +2020-05-20 00:00:00,95.3,202.18,50.91,30.02,20.65,1.3,26.52,43.58,16.38,3.38,23.3,0.38 +2020-05-20 01:00:00,84.86,170.98,45.11,30.09,17.78,1.11,22.04,35.85,11.63,3.23,21.53,0.11 +2020-05-20 02:00:00,79.05,157.65,41.82,30.77,18.41,1.12,17.19,30.97,9.75,2.89,21.0,0.43 +2020-05-20 03:00:00,79.73,166.48,41.18,33.58,24.09,1.19,17.38,32.31,10.79,2.63,24.02,0.42 +2020-05-20 04:00:00,97.47,189.93,41.03,35.26,27.14,1.2,15.43,31.83,10.29,2.59,23.7,0.32 +2020-05-20 05:00:00,126.36,217.33,39.99,35.16,31.27,1.31,15.48,31.46,10.69,2.59,18.99,0.48 +2020-05-20 06:00:00,145.11,236.14,37.11,33.03,30.94,1.27,17.1,30.7,11.06,2.56,16.74,0.44 +2020-05-20 07:00:00,129.45,218.59,34.12,32.05,30.21,1.22,24.96,27.89,10.33,2.47,17.16,0.24 +2020-05-20 08:00:00,107.25,201.07,31.92,30.53,29.06,1.13,45.9,26.46,9.21,2.5,17.18,0.2 +2020-05-20 09:00:00,83.81,165.81,30.59,29.15,26.72,1.05,71.69,24.58,7.85,2.0,15.35,0.08 +2020-05-20 10:00:00,64.93,138.59,28.63,29.09,24.02,0.96,96.15,22.46,6.78,1.81,15.12,0.0 +2020-05-20 11:00:00,51.95,126.37,24.87,28.61,19.23,0.9,106.53,19.79,6.94,1.48,18.93,0.16 +2020-05-20 12:00:00,44.21,113.26,21.66,26.86,15.52,0.86,111.19,17.73,6.0,1.36,16.35,0.0 +2020-05-20 13:00:00,38.16,108.37,19.51,26.38,12.83,0.7,106.14,16.17,6.19,1.06,11.69,0.0 +2020-05-20 14:00:00,35.57,106.55,18.71,26.48,11.08,0.75,105.85,15.91,6.0,0.92,12.62,0.0 +2020-05-20 15:00:00,33.56,109.81,18.12,26.77,10.24,0.82,110.55,15.69,6.23,0.86,10.36,0.01 +2020-05-20 16:00:00,33.22,113.05,18.83,26.64,10.47,0.78,98.35,17.09,8.28,0.98,10.94,0.06 +2020-05-20 17:00:00,32.23,111.8,19.25,25.76,9.87,0.77,102.02,18.72,9.5,1.01,11.26,0.0 +2020-05-20 18:00:00,28.81,107.4,22.82,24.61,9.74,0.74,96.81,21.81,11.03,0.96,11.08,0.07 +2020-05-20 19:00:00,25.28,112.37,31.39,24.0,9.54,0.87,81.76,24.15,8.31,1.06,9.0,0.18 +2020-05-20 20:00:00,29.46,124.74,47.14,24.04,11.71,1.11,56.31,33.02,7.73,1.64,12.01,0.16 +2020-05-20 21:00:00,47.58,155.8,50.81,26.78,14.55,1.29,42.27,33.64,6.85,2.11,17.11,0.18 +2020-05-20 22:00:00,65.42,183.79,39.54,26.82,18.92,1.19,50.86,27.45,6.6,2.05,15.57,0.03 +2020-05-20 23:00:00,68.37,191.73,32.1,26.99,21.04,1.08,57.57,23.08,6.57,1.95,12.81,0.01 +2020-05-21 00:00:00,66.99,175.73,28.26,27.95,21.29,0.95,57.67,20.56,6.29,1.74,11.46,0.12 +2020-05-21 01:00:00,64.54,161.96,24.92,26.71,21.14,1.11,62.95,18.68,5.71,1.6,9.92,0.06 +2020-05-21 02:00:00,59.66,142.69,23.23,28.47,20.55,1.17,61.42,17.78,5.79,1.48,9.51,0.0 +2020-05-21 03:00:00,55.27,137.05,21.72,26.42,20.21,0.99,64.73,17.38,6.3,1.42,8.86,0.18 +2020-05-21 04:00:00,57.81,141.66,22.67,26.91,21.84,1.01,63.19,17.68,5.44,1.46,8.46,0.0 +2020-05-21 05:00:00,59.05,146.7,23.66,26.79,22.25,1.03,59.34,18.17,6.05,1.54,8.53,0.19 +2020-05-21 06:00:00,62.96,147.37,27.92,26.4,24.41,0.91,44.01,21.13,6.49,1.49,10.05,0.07 +2020-05-21 07:00:00,76.67,170.64,31.13,28.3,30.49,0.99,39.02,23.96,7.44,1.73,17.75,0.23 +2020-05-21 08:00:00,87.64,197.48,31.55,29.29,33.04,1.03,51.95,25.02,8.47,2.02,13.19,0.17 +2020-05-21 09:00:00,92.93,206.01,29.36,29.05,28.53,1.01,72.23,23.25,7.88,2.01,10.52,0.02 +2020-05-21 10:00:00,73.45,184.86,26.22,27.15,20.08,1.07,88.75,20.45,6.38,1.61,9.76,0.0 +2020-05-21 11:00:00,50.17,160.74,21.92,25.13,14.69,0.93,90.28,17.44,6.01,1.45,9.45,0.0 +2020-05-21 12:00:00,38.76,146.62,19.68,23.76,11.91,0.79,90.44,16.3,5.98,1.28,22.11,0.0 +2020-05-21 13:00:00,32.12,136.06,18.78,22.89,11.36,0.83,93.43,16.32,6.35,1.14,16.13,0.0 +2020-05-21 14:00:00,32.04,138.61,19.24,22.54,11.23,0.93,93.62,17.27,7.14,1.08,10.1,0.07 +2020-05-21 15:00:00,33.17,149.21,18.65,22.21,10.01,0.76,89.81,17.35,7.8,0.98,10.54,0.0 +2020-05-21 16:00:00,28.66,156.08,18.11,22.75,11.36,0.79,84.47,18.16,8.88,1.05,10.78,0.0 +2020-05-21 17:00:00,26.3,153.39,18.85,21.33,11.47,0.84,82.06,19.34,9.57,0.89,18.73,0.0 +2020-05-21 18:00:00,24.76,138.52,23.8,20.85,14.92,0.85,78.7,22.17,11.16,1.06,10.46,0.0 +2020-05-21 19:00:00,26.34,127.58,36.73,21.62,15.62,1.02,64.75,30.38,12.13,1.31,11.0,0.0 +2020-05-21 20:00:00,37.76,155.83,59.28,23.71,18.94,1.38,30.77,44.17,13.08,2.36,20.14,18.64 +2020-05-21 21:00:00,59.97,200.05,70.5,26.76,17.6,1.75,15.04,55.53,19.01,3.1,33.99,0.0 +2020-05-21 22:00:00,95.05,210.28,70.31,27.78,19.69,1.97,11.72,60.76,25.78,3.71,40.4,0.0 +2020-05-21 23:00:00,100.0,245.42,66.2,28.46,23.09,1.94,11.04,60.11,26.94,3.68,32.91,38.5 +2020-05-22 00:00:00,100.27,248.98,61.96,28.92,24.37,1.59,11.34,58.61,27.72,3.68,36.19,38.42 +2020-05-22 01:00:00,108.18,251.73,57.92,30.59,26.54,1.45,13.71,54.41,25.82,3.6,32.89,57.58 +2020-05-22 02:00:00,111.59,245.21,53.19,31.35,32.67,1.43,13.43,52.48,25.9,3.65,38.01,0.0 +2020-05-22 03:00:00,117.36,243.73,51.39,32.03,32.3,1.37,12.06,49.78,24.3,3.82,29.89,0.0 +2020-05-22 04:00:00,128.15,251.91,50.39,33.49,35.44,1.34,16.51,49.3,24.65,3.92,26.59,0.34 +2020-05-22 05:00:00,142.17,262.74,46.8,32.61,42.79,1.3,12.63,44.33,21.05,4.11,25.38,0.15 +2020-05-22 06:00:00,151.38,276.36,45.84,33.37,41.37,1.3,16.18,42.1,18.22,3.95,33.41,0.12 +2020-05-22 07:00:00,145.92,276.27,45.77,32.81,36.44,1.25,17.98,41.74,19.35,4.29,21.07,76.83 +2020-05-22 08:00:00,130.21,270.18,46.15,31.8,38.03,1.23,33.79,38.95,15.84,4.02,18.35,92.85 +2020-05-22 09:00:00,123.33,272.66,42.64,31.65,34.48,1.22,64.99,35.07,11.93,3.53,17.66,5.44 +2020-05-22 10:00:00,110.5,252.25,40.66,29.88,31.25,1.23,104.71,31.59,9.61,3.24,15.63,0.0 +2020-05-22 11:00:00,97.62,218.99,34.98,27.7,28.93,1.13,123.5,26.91,7.24,2.82,19.27,0.03 +2020-05-22 12:00:00,80.43,186.45,26.96,25.43,24.44,0.98,121.55,22.61,7.53,2.35,15.22,0.0 +2020-05-22 13:00:00,60.55,151.93,22.06,24.12,17.11,0.82,114.85,20.13,8.74,1.85,22.63,0.0 +2020-05-22 14:00:00,58.78,141.63,19.64,23.89,14.94,0.8,99.47,19.6,9.9,1.49,11.69,0.02 +2020-05-22 15:00:00,43.99,138.41,19.4,23.21,12.45,0.77,91.45,20.01,10.27,1.29,15.51,0.1 +2020-05-22 16:00:00,36.81,113.83,18.93,23.35,11.54,0.73,90.13,19.88,10.48,1.24,19.55,0.24 +2020-05-22 17:00:00,36.35,112.6,20.83,23.44,12.63,0.75,86.25,21.95,11.4,1.07,17.63,0.13 +2020-05-22 18:00:00,35.42,114.35,26.22,23.63,14.91,0.78,87.46,30.03,17.36,1.12,16.49,0.23 +2020-05-22 19:00:00,42.24,134.25,43.58,24.68,20.01,1.15,79.28,34.16,12.36,1.63,27.88,0.0 +2020-05-22 20:00:00,62.33,180.19,67.59,27.35,21.27,1.8,49.54,47.06,12.17,2.4,35.83,0.06 +2020-05-22 21:00:00,91.62,238.62,80.42,29.41,22.39,2.19,30.29,56.98,16.18,3.54,47.12,0.03 +2020-05-22 22:00:00,116.36,253.81,83.24,30.94,24.53,2.49,20.45,72.16,29.26,4.15,47.12,0.12 +2020-05-22 23:00:00,133.29,286.28,82.11,29.84,24.26,2.33,19.22,74.15,34.6,4.31,43.08,0.03 +2020-05-23 00:00:00,126.06,274.23,77.95,30.74,23.35,2.25,19.59,74.05,36.25,4.27,49.94,0.15 +2020-05-23 01:00:00,131.86,262.78,72.1,30.4,22.4,2.0,17.47,68.97,32.39,4.44,56.95,0.18 +2020-05-23 02:00:00,117.85,247.13,66.27,31.87,22.51,1.73,14.46,63.72,30.27,4.01,47.92,0.19 +2020-05-23 03:00:00,106.0,221.03,59.92,31.05,19.89,1.51,25.32,55.82,26.34,3.79,43.7,0.41 +2020-05-23 04:00:00,100.35,203.17,53.76,31.56,21.87,1.43,29.46,47.79,19.59,3.91,35.08,0.29 +2020-05-23 05:00:00,95.5,188.4,53.53,31.5,23.03,1.32,25.59,46.98,20.32,3.76,40.17,0.24 +2020-05-23 06:00:00,100.38,194.29,53.48,29.65,21.58,1.36,23.88,46.95,19.94,3.82,47.68,0.17 +2020-05-23 07:00:00,104.34,207.67,54.72,29.93,20.67,1.43,20.68,48.42,20.03,4.19,35.38,0.0 +2020-05-23 08:00:00,98.72,219.03,46.94,29.21,22.59,1.21,27.18,40.84,16.25,3.85,30.33,1.29 +2020-05-23 09:00:00,82.16,208.89,33.15,28.94,20.31,0.99,43.3,29.37,12.54,3.31,18.71,2.94 +2020-05-23 10:00:00,65.64,206.01,29.79,28.25,21.87,0.96,67.95,24.48,8.88,2.58,15.2,1.43 +2020-05-23 11:00:00,71.14,226.32,27.89,28.91,20.06,0.98,90.44,22.47,7.23,2.48,15.85,0.1 +2020-05-23 12:00:00,72.1,246.61,24.01,27.64,18.57,0.88,83.55,19.82,7.11,2.23,14.4,0.0 +2020-05-23 13:00:00,59.41,236.76,20.01,26.7,14.48,0.83,83.07,18.17,7.46,1.85,15.98,0.07 +2020-05-23 14:00:00,45.16,199.64,19.25,27.44,9.99,0.66,71.65,25.01,14.86,1.32,11.42,1.79 +2020-05-23 15:00:00,38.56,165.65,19.07,27.1,8.41,0.6,66.2,18.61,9.0,1.17,9.31,0.0 +2020-05-23 16:00:00,31.15,129.88,23.55,28.97,7.98,0.6,58.31,19.98,14.97,1.08,11.59,0.0 +2020-05-23 17:00:00,26.46,121.69,21.34,28.7,7.48,0.59,55.77,21.05,10.34,1.12,12.55,0.0 +2020-05-23 18:00:00,27.6,127.68,25.86,25.22,7.7,0.65,52.22,22.62,10.37,1.04,12.05,0.0 +2020-05-23 19:00:00,31.08,140.06,43.91,25.58,10.43,0.97,34.49,34.6,14.1,1.44,16.2,0.0 +2020-05-23 20:00:00,46.41,192.81,59.25,28.54,15.26,1.46,22.0,51.17,21.43,2.65,27.84,0.0 +2020-05-23 21:00:00,73.56,252.62,58.23,29.59,18.2,1.54,21.84,48.93,19.83,2.94,49.0,0.0 +2020-05-23 22:00:00,83.39,284.75,42.09,28.19,15.7,1.09,23.91,33.27,12.65,2.9,44.5,0.08 +2020-05-23 23:00:00,63.29,270.71,32.23,26.04,14.95,0.83,26.52,25.24,9.51,2.22,27.6,0.0 +2020-05-24 00:00:00,47.84,216.73,29.83,24.53,14.33,0.76,25.69,23.57,9.07,1.61,21.54,0.0 +2020-05-24 01:00:00,44.38,192.4,24.48,23.83,15.85,0.74,29.88,20.25,8.08,1.63,16.02,0.1 +2020-05-24 02:00:00,45.87,185.78,22.84,24.91,16.21,0.73,33.51,18.85,7.6,1.5,14.24,0.0 +2020-05-24 03:00:00,52.95,200.7,26.83,27.17,20.44,0.9,34.55,21.85,8.38,1.72,18.19,0.0 +2020-05-24 04:00:00,70.66,223.93,27.68,27.56,21.93,0.94,31.77,22.51,8.95,2.07,18.51,0.08 +2020-05-24 05:00:00,86.13,228.57,33.07,27.67,22.16,1.09,22.61,27.46,11.26,2.45,18.7,0.0 +2020-05-24 06:00:00,93.22,221.17,33.98,26.24,20.01,1.07,15.46,28.1,11.27,2.98,18.53,0.0 +2020-05-24 07:00:00,89.23,224.67,34.63,26.72,21.96,1.0,16.79,29.1,11.37,2.86,28.94,0.13 +2020-05-24 08:00:00,84.32,235.39,33.97,28.17,25.34,1.1,30.21,29.85,12.17,2.82,22.98,0.2 +2020-05-24 09:00:00,89.47,244.68,30.39,28.99,28.34,1.01,60.66,25.05,9.01,2.68,13.81,0.28 +2020-05-24 10:00:00,84.81,233.2,26.57,29.37,26.62,0.96,85.5,21.74,8.09,2.6,11.85,0.14 +2020-05-24 11:00:00,71.37,213.38,22.25,29.38,22.28,0.88,88.95,18.04,6.56,2.14,9.93,0.0 +2020-05-24 12:00:00,61.11,193.74,18.18,27.84,14.16,0.74,80.31,15.64,6.46,1.63,7.82,0.08 +2020-05-24 13:00:00,36.69,148.77,16.42,26.03,10.08,0.71,71.14,14.49,6.76,1.26,7.43,0.0 +2020-05-24 14:00:00,27.36,126.94,16.07,25.21,8.04,0.67,72.49,14.49,6.92,0.92,6.26,0.0 +2020-05-24 15:00:00,25.26,111.12,16.16,24.66,8.88,0.65,78.69,14.16,6.63,0.91,7.75,0.0 +2020-05-24 16:00:00,23.07,108.56,17.34,24.48,8.91,0.63,86.76,15.25,6.87,0.72,12.18,0.02 +2020-05-24 17:00:00,26.36,112.67,18.32,25.2,9.73,0.6,84.73,15.75,6.87,0.71,11.6,0.0 +2020-05-24 18:00:00,29.5,115.83,20.68,25.54,11.68,0.66,81.44,16.28,6.33,1.05,17.2,0.0 +2020-05-24 19:00:00,31.21,122.07,28.56,27.22,11.62,0.83,72.91,20.38,6.31,1.03,21.47,0.0 +2020-05-24 20:00:00,38.6,141.28,39.73,27.3,14.33,1.05,52.64,27.64,7.39,1.62,13.0,0.1 +2020-05-24 21:00:00,53.48,173.19,41.62,27.03,18.73,1.16,42.44,28.38,7.04,1.83,14.69,0.03 +2020-05-24 22:00:00,59.7,170.46,40.67,26.1,18.55,1.05,39.72,26.99,7.33,1.78,16.69,0.22 +2020-05-24 23:00:00,56.32,157.89,36.2,25.76,20.49,1.03,40.47,26.39,8.32,1.76,20.95,0.35 +2020-05-25 00:00:00,57.89,155.65,34.78,25.23,21.49,1.03,37.35,25.77,8.7,1.88,15.55,0.56 +2020-05-25 01:00:00,62.84,159.75,33.42,25.73,24.28,1.06,33.41,24.95,7.74,1.98,13.11,0.12 +2020-05-25 02:00:00,65.73,161.09,33.06,27.49,26.59,0.92,30.56,25.89,9.09,1.86,15.74,0.22 +2020-05-25 03:00:00,72.08,164.51,35.3,28.12,27.58,0.97,26.3,27.36,9.17,2.07,13.08,0.0 +2020-05-25 04:00:00,84.32,179.22,34.54,28.43,28.66,0.92,24.62,27.23,9.16,2.18,13.27,0.0 +2020-05-25 05:00:00,95.12,192.26,34.27,28.64,34.93,0.92,25.28,27.78,10.36,2.19,12.19,0.0 +2020-05-25 06:00:00,107.38,212.74,33.02,30.01,45.56,1.02,26.47,26.93,9.83,2.54,25.6,0.12 +2020-05-25 07:00:00,117.6,233.68,31.81,30.26,41.02,1.07,30.48,25.64,10.04,2.62,9.88,0.05 +2020-05-25 08:00:00,112.39,232.99,28.92,29.47,36.25,1.05,49.42,24.24,9.59,2.73,8.67,0.01 +2020-05-25 09:00:00,97.42,217.28,27.35,29.15,30.36,0.98,72.95,21.67,7.73,2.49,7.43,0.0 +2020-05-25 10:00:00,82.66,194.38,26.58,28.64,24.94,0.96,89.23,21.41,7.55,2.21,7.46,0.0 +2020-05-25 11:00:00,65.89,167.26,20.84,27.21,20.5,0.78,96.02,16.98,6.57,1.87,7.68,0.0 +2020-05-25 12:00:00,41.26,119.88,17.87,26.99,14.86,0.65,89.1,15.13,6.12,1.3,6.6,0.0 +2020-05-25 13:00:00,32.41,105.79,17.01,28.2,12.09,0.64,88.93,14.58,6.39,1.22,8.89,0.0 +2020-05-25 14:00:00,27.62,102.63,17.82,26.89,11.16,0.64,89.58,14.83,6.09,0.99,7.29,0.16 +2020-05-25 15:00:00,27.37,118.87,18.39,26.88,10.88,0.61,82.43,14.87,6.62,0.99,7.96,0.21 +2020-05-25 16:00:00,26.01,125.68,16.21,25.7,9.23,0.62,82.72,13.99,6.15,0.94,7.92,1.18 +2020-05-25 17:00:00,24.27,125.9,18.0,24.74,9.09,0.61,78.95,15.11,6.49,0.8,8.26,0.0 +2020-05-25 18:00:00,23.48,111.17,21.64,24.84,10.25,0.71,81.18,17.13,6.74,0.92,10.04,0.0 +2020-05-25 19:00:00,25.37,106.45,28.42,24.48,10.94,0.81,71.35,21.23,6.4,0.93,9.68,0.0 +2020-05-25 20:00:00,36.77,134.69,45.71,24.93,12.6,1.24,42.81,32.72,9.11,1.63,19.24,0.0 +2020-05-25 21:00:00,62.53,191.32,54.97,25.91,14.54,1.51,25.69,41.7,12.27,2.58,30.84,0.0 +2020-05-25 22:00:00,61.76,193.51,55.91,27.49,16.03,1.43,19.28,47.23,18.79,2.98,32.13,0.0 +2020-05-25 23:00:00,64.98,191.04,56.29,27.95,17.26,1.45,19.62,55.73,26.51,3.11,33.29,0.0 +2020-05-26 00:00:00,63.42,183.88,54.95,28.8,16.71,1.39,16.36,58.66,32.63,3.31,30.59,0.0 +2020-05-26 01:00:00,69.77,181.3,51.94,30.08,18.94,1.47,13.2,55.7,30.46,3.84,42.05,0.14 +2020-05-26 02:00:00,71.91,180.62,51.24,32.27,21.29,1.29,10.32,53.07,28.21,3.56,43.71,0.21 +2020-05-26 03:00:00,77.84,181.43,50.2,32.29,24.73,1.21,9.68,51.58,27.07,3.6,37.11,0.01 +2020-05-26 04:00:00,85.84,195.62,50.31,32.84,31.35,1.22,10.12,52.48,28.31,3.52,33.44,0.88 +2020-05-26 05:00:00,95.96,209.61,47.45,32.5,35.22,1.21,10.5,45.96,22.43,3.64,33.15,0.57 +2020-05-26 06:00:00,99.56,214.21,45.23,30.34,31.58,1.21,16.15,42.75,20.36,3.55,25.77,0.16 +2020-05-26 07:00:00,79.99,192.49,40.93,28.14,23.62,1.08,19.73,37.49,17.12,3.66,24.81,0.72 +2020-05-26 08:00:00,66.48,188.26,33.05,27.29,20.8,1.02,29.83,31.09,13.97,2.82,18.38,1.68 +2020-05-26 09:00:00,55.99,194.32,24.97,27.02,15.81,0.81,43.84,23.12,10.97,2.14,13.98,0.0 +2020-05-26 10:00:00,48.01,200.49,22.59,25.65,14.92,0.81,54.29,21.33,10.44,1.86,11.93,0.0 +2020-05-26 11:00:00,40.87,205.06,22.54,25.65,11.83,0.9,69.03,21.15,9.51,1.67,11.41,0.05 +2020-05-26 12:00:00,41.5,209.45,20.9,25.86,11.64,0.79,75.21,19.18,8.6,1.54,12.1,0.0 +2020-05-26 13:00:00,38.64,204.87,18.96,24.99,10.65,0.8,76.7,17.41,7.84,1.29,13.0,0.0 +2020-05-26 14:00:00,33.16,160.8,17.07,23.52,9.25,0.69,72.8,15.69,7.08,1.33,11.67,0.0 +2020-05-26 15:00:00,26.41,133.05,17.11,22.5,9.85,0.61,72.06,14.83,6.84,1.57,11.68,0.0 +2020-05-26 16:00:00,24.25,129.52,17.81,21.77,8.68,0.62,68.89,15.56,7.18,0.83,10.27,0.0 +2020-05-26 17:00:00,24.86,125.96,20.65,21.34,8.82,0.7,68.14,20.52,13.71,0.96,11.93,0.08 +2020-05-26 18:00:00,23.19,118.07,28.18,21.57,9.07,0.8,61.75,22.44,8.54,1.0,16.76,0.01 +2020-05-26 19:00:00,28.4,149.52,47.32,22.48,10.57,1.03,38.95,36.28,13.37,1.66,16.72,0.0 +2020-05-26 20:00:00,37.77,201.73,60.81,28.06,11.85,1.53,15.27,51.04,19.77,2.65,25.68,0.86 +2020-05-26 21:00:00,54.66,247.24,67.12,29.0,12.36,1.97,10.84,74.05,42.98,3.13,37.36,0.51 +2020-05-26 22:00:00,66.42,260.71,61.18,28.76,15.68,2.03,16.1,79.98,51.49,3.86,51.67,0.38 +2020-05-26 23:00:00,74.2,294.54,34.37,26.78,18.5,1.24,49.76,36.52,19.38,3.27,32.03,0.32 +2020-05-27 00:00:00,58.04,242.79,22.03,24.76,15.99,0.95,64.61,20.33,8.49,2.17,17.83,0.11 +2020-05-27 01:00:00,38.79,136.93,21.58,24.44,15.78,0.79,62.99,18.25,6.95,2.05,19.14,0.01 +2020-05-27 02:00:00,35.57,100.21,24.35,25.71,17.69,0.78,49.67,20.0,7.4,2.14,19.09,0.06 +2020-05-27 03:00:00,33.13,88.62,29.57,24.29,20.45,0.77,48.59,24.12,8.78,1.87,17.69,0.0 +2020-05-27 04:00:00,31.21,84.13,30.32,24.32,16.49,0.8,39.8,23.73,8.15,1.86,19.17,0.01 +2020-05-27 05:00:00,31.73,77.4,33.78,24.87,14.07,0.77,31.13,25.59,8.3,1.95,15.31,0.04 +2020-05-27 06:00:00,30.81,82.51,33.22,23.98,11.97,0.79,32.46,25.32,7.83,1.76,13.82,0.08 +2020-05-27 07:00:00,31.05,94.9,34.23,24.35,12.43,0.88,30.96,26.83,8.64,1.66,13.03,0.0 +2020-05-27 08:00:00,36.63,118.39,36.0,25.38,12.62,0.89,40.93,29.3,10.62,1.67,12.01,0.0 +2020-05-27 09:00:00,40.77,137.7,29.59,26.87,13.93,0.83,49.85,24.25,9.8,1.64,12.79,0.01 +2020-05-27 10:00:00,47.91,196.84,24.5,26.78,14.94,0.87,60.46,21.63,8.82,1.55,14.21,0.12 +2020-05-27 11:00:00,55.33,242.3,21.73,27.03,14.27,0.85,70.16,19.52,8.32,1.71,12.49,0.05 +2020-05-27 12:00:00,53.56,246.41,19.77,26.04,13.47,0.7,80.04,16.81,6.58,1.45,12.92,0.08 +2020-05-27 13:00:00,48.96,224.62,18.61,25.48,11.66,0.69,90.19,15.64,6.88,1.26,17.46,0.0 +2020-05-27 14:00:00,45.15,190.87,17.34,25.38,11.88,0.65,92.46,15.05,6.72,1.11,13.74,0.05 +2020-05-27 15:00:00,46.07,175.19,16.83,25.16,12.26,0.64,96.86,15.28,6.63,1.04,14.65,0.06 +2020-05-27 16:00:00,45.31,163.56,18.14,25.48,12.65,0.65,99.9,24.61,16.78,0.97,11.26,0.25 +2020-05-27 17:00:00,41.04,146.29,19.54,26.4,14.06,0.72,99.74,16.35,6.46,1.22,17.49,0.07 +2020-05-27 18:00:00,36.58,124.83,24.79,26.37,14.34,0.83,101.33,17.3,4.82,1.4,19.16,0.08 +2020-05-27 19:00:00,37.82,127.77,35.38,27.13,15.5,1.07,89.95,23.28,5.41,1.89,34.74,0.0 +2020-05-27 20:00:00,43.42,146.55,46.36,28.44,16.87,1.2,66.93,30.51,5.29,2.2,24.58,0.0 +2020-05-27 21:00:00,51.44,175.36,42.88,29.44,16.15,1.18,64.08,26.91,5.28,2.37,20.63,0.04 +2020-05-27 22:00:00,60.6,221.73,27.79,26.7,14.71,0.97,67.92,18.45,4.49,2.12,16.11,0.1 +2020-05-27 23:00:00,56.3,336.29,18.41,24.06,13.55,0.7,71.53,13.86,4.53,1.66,11.65,0.0 +2020-05-28 00:00:00,36.32,242.28,17.69,23.27,13.24,0.67,75.9,13.3,4.67,1.12,8.94,0.0 +2020-05-28 01:00:00,26.36,144.79,16.14,23.51,13.04,0.69,80.15,12.05,4.23,1.13,9.11,0.0 +2020-05-28 02:00:00,23.09,103.23,15.27,25.11,14.21,0.68,71.46,11.26,4.1,1.25,13.82,0.0 +2020-05-28 03:00:00,26.14,148.29,14.67,25.62,12.28,0.76,58.52,11.16,4.5,1.07,9.55,0.0 +2020-05-28 04:00:00,43.03,310.99,13.19,26.34,11.08,0.78,43.23,10.17,4.3,0.87,5.16,0.05 +2020-05-28 05:00:00,45.3,324.16,13.84,26.82,10.99,0.76,39.7,10.95,4.34,0.83,4.31,0.0 +2020-05-28 06:00:00,41.84,281.19,14.54,25.08,10.32,0.77,37.14,11.17,4.49,0.8,4.53,0.0 +2020-05-28 07:00:00,40.48,250.93,16.08,24.84,10.45,0.8,32.87,12.13,4.91,0.95,4.97,0.0 +2020-05-28 08:00:00,37.98,226.86,17.6,25.61,11.12,0.83,30.8,14.41,6.2,0.95,4.33,0.0 +2020-05-28 09:00:00,39.86,220.62,19.82,27.11,11.33,0.9,33.1,15.24,5.48,1.02,5.24,0.0 +2020-05-28 10:00:00,41.86,235.38,21.05,30.91,11.75,0.94,38.35,16.66,5.76,1.27,6.93,0.0 +2020-05-28 11:00:00,45.13,277.16,20.01,30.79,11.75,0.95,47.44,15.75,5.38,1.31,7.4,0.0 +2020-05-28 12:00:00,46.04,302.71,18.36,33.14,11.53,0.93,56.06,15.26,5.55,1.19,6.88,0.0 +2020-05-28 13:00:00,42.8,286.15,17.0,33.26,10.43,0.85,62.28,14.0,5.41,1.06,4.61,0.0 +2020-05-28 14:00:00,43.53,291.32,16.23,32.33,10.14,0.81,68.82,13.4,5.02,1.36,5.63,0.06 +2020-05-28 15:00:00,45.86,266.55,16.92,31.38,9.93,0.8,72.71,13.7,5.49,1.06,9.88,0.07 +2020-05-28 16:00:00,43.44,244.77,16.97,32.8,11.48,0.77,76.94,13.4,5.18,1.11,6.53,0.05 +2020-05-28 17:00:00,39.52,225.29,16.93,33.2,11.36,0.76,74.66,13.54,4.89,1.07,6.43,0.0 +2020-05-28 18:00:00,37.0,213.03,18.6,34.1,11.87,0.79,72.93,14.03,4.65,1.18,6.98,0.0 +2020-05-28 19:00:00,37.32,214.17,20.75,33.8,12.79,0.83,68.22,14.93,4.59,1.25,8.84,0.0 +2020-05-28 20:00:00,39.37,213.36,19.53,30.88,12.63,0.85,60.77,13.96,4.31,1.38,13.32,0.0 +2020-05-28 21:00:00,40.12,208.24,16.59,30.49,12.88,0.85,56.26,12.91,4.65,1.25,10.84,0.0 +2020-05-28 22:00:00,39.57,178.6,16.34,27.95,12.66,0.73,45.2,12.51,4.7,1.26,9.52,0.0 +2020-05-28 23:00:00,35.69,99.18,16.27,28.09,11.1,0.69,38.59,12.37,4.63,0.89,7.8,0.0 +2020-05-29 00:00:00,19.13,38.06,14.98,28.84,11.25,0.65,46.68,11.77,4.67,0.88,7.32,0.0 +2020-05-29 01:00:00,15.53,32.69,15.43,29.73,10.13,0.6,50.33,12.23,4.66,1.11,7.5,0.1 +2020-05-29 02:00:00,14.66,34.83,16.8,32.86,10.51,0.61,48.31,12.91,4.69,1.03,5.92,0.01 +2020-05-29 03:00:00,13.17,36.32,15.75,29.87,9.47,0.6,48.99,12.2,4.84,0.8,6.39,0.0 +2020-05-29 04:00:00,14.33,50.23,16.62,28.47,9.08,0.58,41.41,12.99,4.87,0.82,5.91,0.0 +2020-05-29 05:00:00,15.05,41.63,17.06,28.53,8.71,0.59,39.22,12.96,4.6,0.73,8.51,0.0 +2020-05-29 06:00:00,16.06,38.22,17.58,27.81,9.27,0.61,38.35,13.44,5.2,0.7,8.07,0.0 +2020-05-29 07:00:00,17.03,43.36,19.06,28.64,10.46,0.67,37.32,14.77,5.09,0.93,8.53,0.0 +2020-05-29 08:00:00,21.42,57.39,20.65,29.5,11.64,0.74,37.45,15.71,5.24,1.15,7.93,0.04 +2020-05-29 09:00:00,26.56,68.65,20.86,28.75,12.24,0.83,40.97,16.77,6.11,1.08,6.56,0.04 +2020-05-29 10:00:00,29.76,79.67,19.7,29.45,10.56,0.84,45.88,16.3,6.14,1.25,5.64,0.0 +2020-05-29 11:00:00,29.69,82.42,19.5,31.0,10.61,0.87,52.17,15.51,6.05,1.31,6.2,0.03 +2020-05-29 12:00:00,27.71,80.21,18.92,32.86,10.06,0.88,61.76,15.16,5.21,1.2,5.65,0.01 +2020-05-29 13:00:00,26.48,80.29,18.31,32.64,9.67,0.85,65.28,14.84,5.21,0.95,5.71,0.0 +2020-05-29 14:00:00,26.06,77.59,17.03,32.69,9.56,0.82,69.32,14.18,4.88,0.97,6.8,0.08 +2020-05-29 15:00:00,27.34,82.34,16.93,32.76,9.1,0.83,73.05,13.76,4.81,1.1,11.4,0.0 +2020-05-29 16:00:00,31.67,103.79,16.32,32.35,8.5,0.87,67.52,13.26,4.73,0.96,10.47,0.0 +2020-05-29 17:00:00,36.01,121.81,16.89,33.95,9.07,0.87,62.77,13.13,4.38,1.4,12.21,0.0 +2020-05-29 18:00:00,35.96,118.37,20.75,34.44,9.39,0.9,55.32,15.17,4.94,1.41,18.17,0.08 +2020-05-29 19:00:00,31.85,98.14,26.48,36.26,9.27,0.92,34.9,18.55,5.47,1.49,25.87,0.09 +2020-05-29 20:00:00,32.93,76.24,25.42,36.49,9.46,0.87,28.4,18.07,5.42,1.55,28.35,0.12 +2020-05-29 21:00:00,30.52,57.42,22.12,38.16,10.2,0.85,31.06,16.28,5.27,1.42,19.13,0.08 +2020-05-29 22:00:00,26.82,50.13,21.14,37.9,10.3,0.83,32.22,16.08,5.22,1.18,12.51,0.0 +2020-05-29 23:00:00,25.06,49.99,22.16,38.55,10.3,0.78,30.95,16.53,5.54,0.9,10.69,0.0 +2020-05-30 00:00:00,21.13,46.7,25.08,38.83,11.73,0.77,28.9,18.7,5.85,0.9,10.0,0.0 +2020-05-30 01:00:00,21.63,45.9,19.32,38.51,8.52,0.68,39.27,14.69,5.27,0.84,8.74,0.04 +2020-05-30 02:00:00,17.7,36.46,13.33,42.32,8.86,0.7,46.53,10.49,4.55,0.85,6.78,0.02 +2020-05-30 03:00:00,15.32,30.66,16.55,40.14,9.21,0.71,40.83,12.63,4.76,0.69,6.59,0.0 +2020-05-30 04:00:00,15.24,32.66,18.06,36.46,9.56,0.79,38.7,13.27,4.64,0.72,5.51,0.0 +2020-05-30 05:00:00,15.88,33.1,18.7,36.09,10.84,0.73,34.67,13.71,4.56,0.73,6.25,0.02 +2020-05-30 06:00:00,15.49,33.43,18.54,35.84,9.55,0.78,33.62,13.57,4.87,0.74,6.25,0.06 +2020-05-30 07:00:00,17.33,37.07,18.74,36.37,9.93,0.8,33.53,14.12,5.32,0.91,8.66,0.0 +2020-05-30 08:00:00,19.94,46.87,19.52,37.38,9.7,0.86,32.6,15.13,6.02,0.8,7.2,0.0 +2020-05-30 09:00:00,25.86,57.28,20.06,36.47,9.67,0.82,38.09,16.17,6.69,0.86,6.46,0.07 +2020-05-30 10:00:00,29.01,58.55,19.6,38.46,9.68,0.82,45.09,16.09,6.37,0.97,6.81,0.02 +2020-05-30 11:00:00,26.24,58.59,18.37,38.41,9.29,0.84,55.45,15.25,5.72,0.93,6.45,0.0 +2020-05-30 12:00:00,26.1,60.63,17.56,37.37,9.36,0.87,59.65,14.35,5.22,0.92,6.22,0.0 +2020-05-30 13:00:00,24.84,59.88,16.26,37.04,9.45,0.9,66.51,13.1,5.03,0.95,6.1,0.0 +2020-05-30 14:00:00,22.9,55.05,16.99,36.28,9.95,0.88,71.33,13.74,5.42,0.97,9.07,0.0 +2020-05-30 15:00:00,22.58,53.47,16.6,35.14,9.69,0.91,70.98,13.52,5.03,0.94,6.98,0.0 +2020-05-30 16:00:00,23.9,54.77,16.93,34.03,9.06,0.88,69.2,13.33,4.74,0.94,6.54,0.0 +2020-05-30 17:00:00,24.11,59.14,17.1,34.01,9.26,0.9,68.64,12.97,4.65,1.36,8.01,0.0 +2020-05-30 18:00:00,24.0,60.03,18.08,34.06,9.96,0.86,69.11,12.97,4.34,0.93,6.5,0.11 +2020-05-30 19:00:00,24.52,67.43,20.57,33.37,10.32,0.86,69.81,14.82,4.29,1.0,7.56,0.0 +2020-05-30 20:00:00,24.7,66.6,21.84,33.95,11.56,0.9,64.33,14.6,4.06,0.97,8.88,0.0 +2020-05-30 21:00:00,28.08,71.52,20.34,32.66,11.57,0.95,52.39,14.12,4.27,1.28,14.3,0.0 +2020-05-30 22:00:00,33.64,78.03,18.79,32.82,11.82,0.98,42.76,13.79,4.35,1.41,10.33,0.0 +2020-05-30 23:00:00,34.0,72.82,17.39,32.47,10.26,1.0,34.98,13.45,5.0,1.15,6.41,0.0 +2020-05-31 00:00:00,32.34,64.48,17.04,32.84,9.59,0.96,32.58,13.4,5.13,1.16,6.07,0.0 +2020-05-31 01:00:00,30.58,59.26,16.17,33.8,9.84,0.76,30.22,12.37,4.5,1.1,5.83,0.0 +2020-05-31 02:00:00,33.55,61.91,16.2,36.0,9.89,0.76,23.52,12.0,4.43,1.08,6.34,0.1 +2020-05-31 03:00:00,35.79,62.8,15.46,36.41,9.84,0.76,22.22,11.73,4.61,1.2,6.87,0.01 +2020-05-31 04:00:00,33.27,52.64,12.61,33.32,8.7,0.72,35.88,10.12,4.93,1.42,9.46,0.0 +2020-05-31 05:00:00,12.32,23.49,10.22,33.56,8.23,0.66,48.36,8.72,4.28,0.85,6.14,0.0 +2020-05-31 06:00:00,7.43,14.07,13.21,32.36,8.41,0.74,44.43,10.46,4.36,0.94,5.29,0.0 +2020-05-31 07:00:00,8.46,15.14,18.22,32.92,8.64,0.77,34.21,14.03,5.26,1.13,10.73,0.0 +2020-05-31 08:00:00,13.13,21.43,21.05,33.7,8.83,0.81,32.71,16.55,6.43,1.01,9.03,0.12 +2020-05-31 09:00:00,14.46,24.24,18.16,35.86,9.02,0.83,35.9,15.3,6.27,0.79,7.37,0.15 +2020-05-31 10:00:00,21.18,36.53,17.68,36.09,8.85,0.85,42.08,14.36,5.86,0.84,6.79,0.04 +2020-05-31 11:00:00,24.29,45.07,15.44,36.97,9.21,0.86,50.63,13.17,5.38,0.99,7.11,0.09 +2020-05-31 12:00:00,27.47,47.35,15.01,36.87,9.03,0.95,56.36,12.8,5.21,0.93,7.17,0.84 +2020-05-31 13:00:00,26.0,48.21,14.38,36.18,9.03,0.91,58.54,12.19,4.52,0.9,7.55,1.48 +2020-05-31 14:00:00,24.28,47.11,13.97,37.16,9.05,0.84,58.78,10.88,4.61,0.89,6.54,0.82 +2020-05-31 15:00:00,24.8,48.02,13.93,35.26,8.15,0.83,61.59,11.15,4.45,0.95,7.69,0.55 +2020-05-31 16:00:00,24.28,53.55,17.93,35.76,8.76,1.0,58.41,13.41,4.74,1.0,11.4,0.29 +2020-05-31 17:00:00,22.32,53.26,21.12,34.76,9.05,1.01,44.47,14.99,5.35,1.3,16.63,0.18 +2020-05-31 18:00:00,17.47,38.52,22.28,33.28,8.3,0.97,37.17,15.77,5.38,1.27,15.45,0.29 +2020-05-31 19:00:00,15.11,26.36,22.58,33.89,9.03,1.01,37.28,16.67,5.54,0.91,11.61,0.3 +2020-05-31 20:00:00,14.95,26.12,21.52,35.12,9.33,0.83,37.27,15.57,5.15,1.24,12.68,0.22 +2020-05-31 21:00:00,19.27,35.54,18.78,34.63,9.03,0.78,46.42,13.41,4.65,1.05,11.04,0.34 +2020-05-31 22:00:00,15.49,30.42,17.88,35.7,9.77,0.78,44.9,13.09,4.59,1.06,12.08,0.34 +2020-05-31 23:00:00,17.97,34.91,18.46,35.38,9.86,0.79,40.93,13.34,4.77,1.09,10.31,0.04 +2020-06-01 00:00:00,23.94,44.45,19.9,35.18,10.27,0.94,34.91,15.07,5.2,1.44,14.81,0.05 +2020-06-01 01:00:00,24.34,43.66,19.28,34.31,10.47,0.8,30.92,14.43,5.24,1.43,13.71,0.15 +2020-06-01 02:00:00,25.89,43.49,17.92,37.57,10.54,0.77,25.97,13.51,5.15,1.52,13.26,0.24 +2020-06-01 03:00:00,28.42,44.11,16.82,35.96,11.82,0.76,28.8,13.27,5.2,1.63,11.0,0.16 +2020-06-01 04:00:00,29.97,47.94,16.43,34.33,10.98,0.79,23.74,13.21,5.12,1.66,11.07,0.22 +2020-06-01 05:00:00,29.76,48.36,18.29,34.25,11.56,0.79,23.74,14.68,5.95,1.74,12.88,0.25 +2020-06-01 06:00:00,27.39,50.47,20.43,34.18,11.92,0.92,18.78,16.62,6.7,1.82,12.85,0.34 +2020-06-01 07:00:00,29.02,54.06,21.13,34.66,13.71,0.93,18.43,17.93,7.44,2.06,14.75,0.31 +2020-06-01 08:00:00,37.43,62.46,20.54,36.0,16.68,0.97,28.76,18.53,8.15,2.22,13.26,0.54 +2020-06-01 09:00:00,47.21,73.24,21.77,35.28,19.05,1.03,36.43,18.26,7.83,2.03,11.99,0.33 +2020-06-01 10:00:00,45.86,70.07,22.27,35.87,19.61,1.12,50.23,18.4,6.74,2.08,12.34,0.6 +2020-06-01 11:00:00,44.55,75.59,22.94,36.85,17.12,1.02,65.81,17.89,5.96,2.33,14.85,0.98 +2020-06-01 12:00:00,46.0,84.32,21.01,37.37,14.76,0.96,73.88,15.55,5.29,1.73,15.67,0.71 +2020-06-01 13:00:00,43.45,86.6,20.32,36.42,15.83,0.97,82.47,15.81,5.21,2.2,15.06,0.27 +2020-06-01 14:00:00,44.54,92.65,19.62,35.84,17.18,0.93,90.65,15.09,4.36,1.98,14.68,0.29 +2020-06-01 15:00:00,44.28,94.4,18.89,35.34,16.06,0.88,92.49,14.41,4.53,1.89,12.19,0.29 +2020-06-01 16:00:00,42.24,92.6,17.76,34.06,14.4,0.87,95.95,13.96,4.39,1.69,14.09,0.12 +2020-06-01 17:00:00,44.25,94.29,18.26,34.19,13.11,0.97,92.87,14.3,4.65,1.71,14.56,0.09 +2020-06-01 18:00:00,44.6,94.91,19.35,34.1,13.28,0.93,90.96,14.52,4.81,1.6,16.8,0.82 +2020-06-01 19:00:00,47.05,97.14,24.49,32.53,13.4,0.87,77.81,17.16,4.79,1.7,19.41,0.53 +2020-06-01 20:00:00,47.28,101.46,32.14,32.4,14.86,1.03,54.47,21.81,5.27,2.09,27.04,0.4 +2020-06-01 21:00:00,54.37,118.57,36.65,34.38,14.77,1.18,34.78,25.05,5.34,2.32,32.24,0.37 +2020-06-01 22:00:00,63.95,155.38,41.08,34.49,12.44,1.26,23.07,29.13,7.34,2.73,31.19,0.49 +2020-06-01 23:00:00,69.47,161.04,44.38,34.48,12.73,1.29,17.86,33.71,10.28,2.98,37.44,0.48 +2020-06-02 00:00:00,73.43,144.46,47.69,34.94,16.5,1.24,20.55,33.04,8.65,2.78,34.38,1.02 +2020-06-02 01:00:00,73.16,143.3,39.41,36.63,19.17,1.19,18.25,29.58,8.89,3.22,33.7,1.09 +2020-06-02 02:00:00,78.95,144.14,35.61,38.96,16.6,1.17,16.73,28.59,10.25,3.28,32.58,1.18 +2020-06-02 03:00:00,83.47,139.17,33.38,41.76,16.92,1.09,15.47,28.17,10.94,2.95,43.31,1.12 +2020-06-02 04:00:00,83.84,139.02,34.17,39.77,16.52,1.09,17.71,29.11,11.57,3.16,42.35,1.44 +2020-06-02 05:00:00,79.29,133.82,31.74,38.25,13.87,1.08,16.51,28.41,12.11,2.57,37.28,2.66 +2020-06-02 06:00:00,74.2,131.17,28.64,40.24,14.35,1.08,15.52,25.28,10.62,2.18,30.77,2.34 +2020-06-02 07:00:00,65.09,126.11,18.61,36.2,12.74,0.89,28.46,17.16,8.09,1.97,20.76,1.97 +2020-06-02 08:00:00,38.41,82.9,18.44,33.9,10.99,0.83,43.3,15.58,6.74,1.71,13.54,0.73 +2020-06-02 09:00:00,22.25,46.61,18.35,34.43,10.33,0.82,44.59,15.59,6.45,1.33,11.54,0.44 +2020-06-02 10:00:00,20.57,48.62,24.06,34.59,11.13,0.83,54.16,21.21,8.49,1.17,11.76,0.42 +2020-06-02 11:00:00,23.98,54.43,23.29,34.99,13.24,0.89,63.43,19.52,7.2,1.55,12.95,0.38 +2020-06-02 12:00:00,29.52,72.99,21.82,35.83,11.35,0.91,72.31,17.63,5.96,1.44,11.38,0.53 +2020-06-02 13:00:00,32.09,87.27,18.52,34.76,12.17,0.87,80.95,15.07,5.43,1.22,9.86,0.15 +2020-06-02 14:00:00,29.3,82.56,16.72,34.69,10.23,0.87,84.95,14.27,5.51,1.04,8.3,0.0 +2020-06-02 15:00:00,27.34,77.92,16.66,34.32,9.37,0.9,85.41,13.55,5.29,1.04,10.76,0.0 +2020-06-02 16:00:00,28.25,75.75,15.93,34.34,10.26,0.76,88.06,13.36,5.08,0.8,10.76,0.0 +2020-06-02 17:00:00,28.69,78.06,18.25,34.9,11.45,0.8,84.5,15.18,6.49,0.97,13.54,0.0 +2020-06-02 18:00:00,30.49,81.56,18.32,34.03,10.47,0.75,79.77,14.19,5.1,0.96,11.28,0.03 +2020-06-02 19:00:00,30.05,85.2,21.38,34.0,11.65,0.71,70.67,15.79,5.02,0.94,17.48,0.11 +2020-06-02 20:00:00,33.93,91.26,23.61,35.17,14.01,0.84,62.53,16.9,4.99,1.35,25.53,0.14 +2020-06-02 21:00:00,39.66,99.7,22.54,35.0,11.79,0.85,50.17,16.4,4.91,1.55,33.52,0.2 +2020-06-02 22:00:00,37.71,99.01,22.42,33.86,10.04,0.84,48.82,16.45,4.81,1.29,17.75,0.26 +2020-06-02 23:00:00,38.0,94.53,25.16,33.18,9.97,0.83,38.57,18.43,5.5,1.45,15.09,0.22 +2020-06-03 00:00:00,38.47,91.99,29.57,34.13,10.62,0.78,29.77,23.1,7.5,1.48,17.07,0.24 +2020-06-03 01:00:00,37.37,91.67,27.92,35.46,11.44,0.77,26.01,21.67,6.95,1.42,15.81,0.2 +2020-06-03 02:00:00,41.81,96.41,28.26,38.26,11.72,0.78,26.19,21.8,7.42,1.58,15.29,0.34 +2020-06-03 03:00:00,47.82,100.81,26.08,39.31,16.65,0.76,24.26,21.73,7.89,1.85,24.27,0.26 +2020-06-03 04:00:00,52.11,104.66,25.88,37.18,16.02,0.79,23.17,20.61,7.71,1.97,24.73,0.43 +2020-06-03 05:00:00,56.72,104.69,23.7,37.04,16.37,0.81,24.6,19.61,7.11,1.89,23.06,0.31 +2020-06-03 06:00:00,60.87,112.08,27.76,37.25,20.36,0.87,16.71,23.86,9.7,2.06,26.39,0.2 +2020-06-03 07:00:00,67.96,126.52,28.7,38.41,20.44,0.92,21.96,25.36,10.56,2.09,20.82,0.2 +2020-06-03 08:00:00,77.15,140.37,27.54,38.43,21.67,0.91,32.61,23.76,8.82,2.17,17.37,0.23 +2020-06-03 09:00:00,70.4,146.47,25.71,37.78,21.71,0.88,54.47,21.67,7.86,2.15,14.75,0.19 +2020-06-03 10:00:00,59.17,127.81,24.37,37.81,19.53,0.96,66.96,19.32,6.93,2.19,14.31,0.26 +2020-06-03 11:00:00,55.86,130.61,20.63,39.1,21.44,0.96,82.31,16.35,5.42,2.16,15.82,0.66 +2020-06-03 12:00:00,53.42,122.33,20.34,38.42,20.78,0.87,97.64,15.87,4.94,1.98,18.32,1.13 +2020-06-03 13:00:00,49.2,117.26,22.96,35.72,16.25,0.92,101.33,17.61,5.55,1.9,16.82,0.12 +2020-06-03 14:00:00,48.09,118.15,20.69,35.65,17.15,0.81,95.74,15.37,4.74,1.67,16.73,0.1 +2020-06-03 15:00:00,48.68,117.57,19.98,34.78,15.45,0.78,90.27,15.04,5.0,2.1,14.82,3.73 +2020-06-03 16:00:00,48.74,112.34,19.31,34.89,13.51,0.77,82.15,14.0,4.11,1.97,17.25,3.17 +2020-06-03 17:00:00,44.2,105.19,20.01,35.27,12.92,0.88,91.24,14.19,4.5,1.44,19.23,0.23 +2020-06-03 18:00:00,37.34,105.95,24.74,34.16,12.52,0.84,77.42,18.31,5.75,1.37,20.43,0.03 +2020-06-03 19:00:00,36.64,111.02,29.39,33.62,13.48,0.9,66.75,21.01,5.62,1.52,27.01,0.16 +2020-06-03 20:00:00,37.41,100.18,38.7,32.89,12.25,1.04,49.97,26.65,6.49,1.74,27.66,0.21 +2020-06-03 21:00:00,41.5,103.01,45.45,32.7,12.66,1.18,33.24,31.55,7.49,2.55,29.86,1.81 +2020-06-03 22:00:00,49.4,116.34,47.86,33.09,13.99,1.25,22.23,34.41,9.51,2.48,22.3,3.77 +2020-06-03 23:00:00,54.63,132.83,46.93,33.92,12.91,1.26,14.72,36.44,12.06,2.52,23.32,2.51 +2020-06-04 00:00:00,52.51,123.7,46.43,34.02,13.63,1.25,13.85,38.95,15.39,2.41,30.51,2.63 +2020-06-04 01:00:00,52.34,126.2,46.86,36.48,16.27,1.25,13.62,40.35,16.87,2.27,34.28,0.53 +2020-06-04 02:00:00,56.23,134.79,47.28,37.85,19.13,1.23,16.23,48.76,25.84,2.92,39.68,1.37 +2020-06-04 03:00:00,58.61,129.96,41.92,39.79,19.7,1.12,18.09,42.67,21.09,2.78,52.44,3.51 +2020-06-04 04:00:00,65.11,137.48,39.23,38.18,18.87,1.1,17.54,39.44,18.97,3.35,38.53,3.06 +2020-06-04 05:00:00,84.07,171.72,36.74,40.34,23.02,1.09,20.03,36.61,18.02,3.34,35.92,5.29 +2020-06-04 06:00:00,106.32,186.21,36.4,40.41,24.44,1.21,13.46,40.15,21.99,3.5,39.5,2.62 +2020-06-04 07:00:00,114.86,216.35,39.67,42.28,24.9,1.23,11.52,43.41,23.3,3.32,43.33,3.36 +2020-06-04 08:00:00,128.51,227.26,45.23,44.27,28.41,1.27,19.4,42.98,18.71,3.41,46.39,4.66 +2020-06-04 09:00:00,125.56,221.3,37.52,43.09,26.12,1.23,33.78,32.7,11.98,3.39,39.1,1.53 +2020-06-04 10:00:00,100.04,190.28,31.54,42.97,23.68,1.2,46.3,26.24,8.92,3.12,26.61,4.15 +2020-06-04 11:00:00,83.08,168.13,27.01,41.64,22.03,1.09,62.93,21.82,7.07,3.05,23.24,3.08 +2020-06-04 12:00:00,76.1,170.17,22.67,40.35,18.55,1.01,72.77,18.53,5.82,2.5,21.73,1.67 +2020-06-04 13:00:00,68.57,165.77,20.76,40.65,16.77,0.98,77.98,16.48,5.38,2.7,17.79,0.26 +2020-06-04 14:00:00,62.53,150.39,21.75,40.29,17.26,1.01,75.05,16.23,5.2,2.52,18.29,3.31 +2020-06-04 15:00:00,60.13,133.34,25.6,38.86,18.1,0.98,66.64,18.52,5.38,2.56,17.74,2.98 +2020-06-04 16:00:00,53.11,130.79,28.67,37.67,17.61,0.98,66.75,20.17,5.54,2.16,22.91,2.75 +2020-06-04 17:00:00,53.08,136.49,29.93,37.51,14.31,0.96,65.59,22.23,6.65,2.54,28.09,1.15 +2020-06-04 18:00:00,47.46,129.16,24.07,36.82,11.96,0.87,57.87,18.15,6.13,2.43,25.07,1.17 +2020-06-04 19:00:00,36.61,89.38,29.71,36.57,11.41,0.92,48.82,22.36,6.98,2.13,16.47,1.22 +2020-06-04 20:00:00,33.49,69.26,32.86,35.26,10.84,0.98,41.06,23.96,6.54,2.32,20.9,0.46 +2020-06-04 21:00:00,37.88,71.61,37.4,34.48,12.74,1.03,27.97,27.46,7.68,2.56,24.02,0.74 +2020-06-04 22:00:00,39.53,80.6,38.02,36.58,10.75,1.06,24.54,28.19,8.28,2.86,24.37,1.56 +2020-06-04 23:00:00,42.0,90.67,31.45,36.01,10.69,0.99,27.66,23.21,7.07,2.8,24.2,1.65 +2020-06-05 00:00:00,46.46,88.58,25.97,36.49,11.35,0.92,28.61,19.97,6.6,2.39,23.43,1.98 +2020-06-05 01:00:00,51.04,93.15,23.6,37.58,12.04,0.85,28.79,18.52,6.18,2.37,22.72,0.88 +2020-06-05 02:00:00,52.93,97.52,20.61,39.22,12.34,0.79,28.54,16.79,6.12,2.33,18.24,0.67 +2020-06-05 03:00:00,54.32,97.84,21.54,39.73,15.01,0.78,25.04,17.38,6.34,2.34,15.77,0.58 +2020-06-05 04:00:00,54.99,94.35,23.25,37.94,12.21,0.78,23.25,17.67,6.79,2.22,15.98,0.77 +2020-06-05 05:00:00,48.17,84.59,23.27,36.04,13.56,0.81,22.91,18.08,7.61,2.1,15.16,0.93 +2020-06-05 06:00:00,44.25,77.48,24.89,34.56,12.13,0.8,19.83,20.23,7.99,1.81,13.29,0.65 +2020-06-05 07:00:00,43.23,78.15,27.23,34.92,11.6,0.84,17.65,22.81,9.48,1.84,11.98,0.26 +2020-06-05 08:00:00,45.21,87.66,24.96,35.95,12.17,0.89,19.27,22.88,10.27,1.72,12.75,0.2 +2020-06-05 09:00:00,46.62,89.18,22.84,36.05,13.41,0.88,30.74,20.86,9.31,2.03,12.79,0.24 +2020-06-05 10:00:00,42.26,85.54,23.84,35.18,12.44,0.85,44.68,21.6,10.32,1.94,12.51,0.22 +2020-06-05 11:00:00,40.8,84.41,21.1,35.24,13.3,0.8,58.55,18.25,7.64,1.95,13.66,0.12 +2020-06-05 12:00:00,36.93,80.21,18.86,36.54,12.59,0.75,66.91,15.25,6.04,1.57,11.51,4.22 +2020-06-05 13:00:00,35.64,74.35,17.42,35.57,11.79,0.73,82.63,13.07,5.19,1.35,8.84,16.83 +2020-06-05 14:00:00,34.4,73.94,17.36,35.79,11.54,0.75,88.72,13.74,5.28,1.26,9.11,4.93 +2020-06-05 15:00:00,33.99,75.27,17.43,34.69,11.22,0.75,97.4,12.99,4.66,1.48,11.16,2.39 +2020-06-05 16:00:00,35.98,80.04,19.94,34.55,11.71,0.76,92.56,15.06,5.14,1.29,15.21,0.7 +2020-06-05 17:00:00,34.82,83.27,25.63,34.91,12.22,0.79,68.52,18.25,6.93,1.67,15.7,0.15 +2020-06-05 18:00:00,27.25,64.64,30.75,33.27,11.91,0.8,53.38,22.12,7.92,1.41,16.68,1.42 +2020-06-05 19:00:00,23.24,57.02,35.31,31.2,12.89,0.93,46.71,24.16,6.88,1.63,19.01,0.29 +2020-06-05 20:00:00,30.54,79.05,44.92,33.81,12.16,1.17,31.69,36.76,13.38,2.54,32.53,2.97 +2020-06-05 21:00:00,41.51,108.21,47.42,34.38,12.81,1.34,26.2,36.02,11.69,3.28,39.46,2.08 +2020-06-05 22:00:00,57.44,134.61,37.46,34.49,14.15,1.18,34.65,29.07,8.46,2.92,39.42,2.38 +2020-06-05 23:00:00,56.32,120.25,25.2,34.06,12.46,0.95,38.74,19.23,6.27,2.46,25.51,2.35 +2020-06-06 00:00:00,55.4,102.53,25.96,33.33,10.84,0.85,36.53,18.85,5.68,1.79,12.91,0.88 +2020-06-06 01:00:00,46.83,85.1,18.91,33.33,10.11,0.76,35.63,15.2,5.99,1.61,10.37,0.41 +2020-06-06 02:00:00,35.56,78.25,16.27,34.13,9.98,0.72,32.11,12.9,4.8,1.49,9.14,0.11 +2020-06-06 03:00:00,29.92,67.08,16.32,34.06,10.71,0.7,31.79,13.0,5.05,1.24,7.9,0.12 +2020-06-06 04:00:00,25.86,50.93,15.65,32.08,9.73,0.65,30.21,12.37,5.48,1.41,7.64,0.0 +2020-06-06 05:00:00,24.27,49.64,15.98,30.54,10.18,0.65,28.02,12.92,5.33,1.32,8.17,0.0 +2020-06-06 06:00:00,23.99,51.95,17.15,30.35,10.66,0.7,24.56,14.62,6.2,1.62,7.49,0.0 +2020-06-06 07:00:00,28.76,57.57,19.89,31.09,10.54,0.76,21.9,16.42,6.62,1.71,8.25,1.45 +2020-06-06 08:00:00,32.56,65.58,19.72,31.49,10.54,0.79,25.93,17.06,7.23,1.83,8.12,0.81 +2020-06-06 09:00:00,34.87,70.76,19.3,32.1,10.84,0.83,34.28,16.49,7.01,1.63,8.52,0.5 +2020-06-06 10:00:00,35.34,72.15,18.86,31.64,10.78,0.83,46.7,16.33,6.82,1.81,8.58,0.41 +2020-06-06 11:00:00,34.25,72.88,17.65,32.0,10.66,0.81,59.19,15.05,5.82,1.71,8.59,0.01 +2020-06-06 12:00:00,34.93,75.97,16.65,32.73,10.34,0.77,71.04,13.62,5.18,1.54,7.77,0.15 +2020-06-06 13:00:00,34.68,77.94,16.28,33.42,10.15,0.75,79.15,13.24,5.25,1.49,8.44,0.01 +2020-06-06 14:00:00,32.93,77.39,17.09,33.08,10.88,0.76,86.2,13.38,4.8,1.37,8.44,0.41 +2020-06-06 15:00:00,32.09,77.34,17.06,32.53,10.0,0.78,92.4,12.98,4.8,1.34,11.04,0.01 +2020-06-06 16:00:00,34.06,80.03,17.77,31.85,9.85,0.78,93.73,13.82,5.05,1.46,10.83,0.23 +2020-06-06 17:00:00,32.01,82.59,19.19,31.49,10.08,0.8,90.91,14.86,5.5,1.14,10.2,0.0 +2020-06-06 18:00:00,30.79,80.42,20.66,30.95,9.82,0.79,88.74,15.72,6.12,1.21,9.08,0.03 +2020-06-06 19:00:00,32.02,85.02,23.05,30.0,9.68,0.83,79.92,16.79,5.28,1.27,12.11,0.04 +2020-06-06 20:00:00,33.78,97.85,32.02,29.77,10.75,0.99,53.56,21.77,5.93,1.56,17.95,0.19 +2020-06-06 21:00:00,41.88,119.51,36.89,30.98,11.47,1.13,38.58,25.23,5.95,2.07,23.76,0.81 +2020-06-06 22:00:00,46.37,125.54,35.89,30.12,14.58,1.11,29.8,24.06,6.09,2.2,23.31,1.78 +2020-06-06 23:00:00,50.16,127.75,35.75,30.26,13.39,1.1,24.08,26.19,8.35,2.61,26.08,0.78 +2020-06-07 00:00:00,51.48,124.72,33.6,30.22,13.8,1.06,21.06,27.12,9.38,2.22,22.15,1.13 +2020-06-07 01:00:00,50.28,117.49,30.44,30.73,12.71,0.95,23.23,23.54,7.82,2.3,21.27,1.2 +2020-06-07 02:00:00,50.79,119.15,29.07,32.39,13.9,0.93,24.23,21.85,6.77,2.36,21.46,1.14 +2020-06-07 03:00:00,53.83,116.02,26.35,33.86,13.88,0.88,23.64,19.46,6.8,2.48,19.77,1.04 +2020-06-07 04:00:00,52.39,108.39,23.99,32.42,13.88,0.86,26.86,18.4,6.47,2.38,17.6,0.98 +2020-06-07 05:00:00,51.72,112.01,21.85,31.22,14.63,0.86,26.2,17.2,6.83,2.44,15.14,1.03 +2020-06-07 06:00:00,52.03,108.94,20.03,30.65,12.92,0.82,30.65,15.88,6.45,2.55,12.8,0.27 +2020-06-07 07:00:00,38.86,75.1,18.02,28.13,10.51,0.69,45.37,15.01,6.34,1.72,8.98,0.36 +2020-06-07 08:00:00,17.75,35.09,22.07,27.91,9.29,0.72,39.31,18.21,6.91,1.17,7.51,0.21 +2020-06-07 09:00:00,15.3,34.23,22.91,28.27,10.8,0.77,40.95,19.1,7.22,1.14,8.41,0.56 +2020-06-07 10:00:00,17.99,46.35,22.71,29.54,10.9,0.85,53.29,20.09,8.54,1.18,12.25,1.15 +2020-06-07 11:00:00,41.06,100.56,19.99,33.6,11.97,0.89,48.02,15.97,6.46,1.57,16.59,0.9 +2020-06-07 12:00:00,64.69,147.31,18.71,32.33,12.22,0.91,44.34,15.23,6.36,1.9,20.78,0.32 +2020-06-07 13:00:00,52.71,101.22,16.42,32.04,12.54,0.9,55.3,14.04,5.28,2.11,17.26,0.35 +2020-06-07 14:00:00,47.59,90.34,15.52,31.78,10.87,0.82,69.51,13.05,5.13,2.09,14.38,0.46 +2020-06-07 15:00:00,44.55,84.33,14.59,32.22,10.66,0.77,75.84,12.45,4.77,1.48,16.91,0.47 +2020-06-07 16:00:00,40.1,77.78,14.32,31.63,10.32,0.72,76.44,12.18,4.56,1.4,15.21,0.39 +2020-06-07 17:00:00,34.88,73.94,16.42,31.42,10.26,0.75,75.07,13.38,5.7,1.1,14.21,0.12 +2020-06-07 18:00:00,27.91,72.15,17.36,30.45,9.97,0.73,74.35,13.85,6.02,1.53,11.3,0.32 +2020-06-07 19:00:00,23.1,70.73,23.23,29.51,10.64,0.82,62.52,17.22,5.75,1.44,18.52,1.22 +2020-06-07 20:00:00,26.83,83.1,29.74,29.17,11.02,0.94,47.01,21.04,5.8,1.66,30.65,1.8 +2020-06-07 21:00:00,32.66,97.22,32.02,30.4,11.95,1.03,39.08,24.12,7.23,1.93,32.64,1.64 +2020-06-07 22:00:00,35.29,105.98,27.31,29.69,12.47,0.97,36.88,20.75,6.2,1.82,21.21,1.25 +2020-06-07 23:00:00,35.9,85.97,26.92,29.47,13.32,0.93,30.45,20.96,7.24,1.75,16.49,0.95 +2020-06-08 00:00:00,38.17,85.51,31.62,29.14,13.02,0.94,20.16,24.58,8.44,1.89,15.9,0.65 +2020-06-08 01:00:00,40.84,86.16,32.08,29.12,12.72,0.91,20.51,26.2,9.22,2.33,23.66,2.82 +2020-06-08 02:00:00,38.87,82.14,31.64,30.98,11.49,0.97,16.65,25.89,10.05,2.43,21.49,0.54 +2020-06-08 03:00:00,35.33,79.76,31.27,31.66,15.96,0.96,20.65,28.09,12.7,2.31,33.06,0.54 +2020-06-08 04:00:00,35.2,75.46,29.12,30.67,16.44,0.93,14.92,25.67,11.73,1.69,30.17,0.36 +2020-06-08 05:00:00,42.08,82.85,25.37,31.08,21.01,0.91,15.78,23.08,10.75,2.27,18.05,0.35 +2020-06-08 06:00:00,53.0,93.97,25.77,31.26,20.39,0.95,19.88,23.36,11.47,2.31,16.27,0.27 +2020-06-08 07:00:00,59.86,108.21,27.5,32.81,19.28,1.03,19.92,25.03,11.78,2.9,18.05,0.25 +2020-06-08 08:00:00,66.03,116.85,26.03,33.67,19.67,1.05,29.5,22.81,10.09,2.7,16.31,0.39 +2020-06-08 09:00:00,61.14,114.35,23.59,33.67,20.53,1.04,43.93,20.78,8.42,2.36,13.1,0.25 +2020-06-08 10:00:00,56.77,109.96,22.27,33.45,18.91,1.02,63.97,19.73,8.01,2.17,11.5,0.25 +2020-06-08 11:00:00,51.73,105.25,22.28,33.53,17.23,0.98,84.38,18.2,6.44,1.99,13.57,0.21 +2020-06-08 12:00:00,52.04,107.65,21.52,33.72,15.88,0.9,90.73,17.79,6.11,2.06,16.38,0.24 +2020-06-08 13:00:00,49.34,110.23,18.98,33.36,14.73,0.88,90.19,15.24,5.75,1.9,16.58,0.18 +2020-06-08 14:00:00,43.92,103.32,17.77,32.91,13.58,0.83,84.43,14.78,5.63,1.74,14.28,0.12 +2020-06-08 15:00:00,38.87,96.6,16.74,32.38,12.18,0.76,80.39,16.73,7.2,1.45,14.47,0.09 +2020-06-08 16:00:00,34.65,92.72,16.21,31.17,11.16,0.75,77.74,16.22,7.12,0.93,14.03,0.06 +2020-06-08 17:00:00,33.96,98.99,16.83,31.21,11.37,0.78,78.9,16.02,6.76,1.06,14.56,0.0 +2020-06-08 18:00:00,35.28,100.27,17.5,30.46,11.5,0.77,79.73,14.98,5.27,1.06,15.82,0.96 +2020-06-08 19:00:00,34.97,99.35,24.67,30.56,13.1,0.8,77.1,18.43,5.31,1.06,19.9,0.06 +2020-06-08 20:00:00,40.56,107.52,30.79,29.92,14.69,0.96,63.05,21.81,4.67,1.49,34.46,0.19 +2020-06-08 21:00:00,48.61,124.64,36.53,32.76,17.0,1.14,58.12,25.56,5.27,2.14,38.69,0.59 +2020-06-08 22:00:00,64.08,143.52,36.33,31.87,18.04,1.18,51.03,25.78,4.97,2.81,30.78,1.11 +2020-06-08 23:00:00,70.42,153.15,37.03,32.16,18.84,1.12,40.75,27.9,7.28,2.82,24.24,0.73 +2020-06-09 00:00:00,71.58,149.0,41.46,32.18,20.11,1.15,29.87,31.97,8.47,2.68,25.24,1.07 +2020-06-09 01:00:00,77.05,150.71,39.6,33.79,17.8,1.17,21.96,30.88,8.53,2.89,34.57,1.02 +2020-06-09 02:00:00,80.6,147.98,41.79,33.69,16.88,1.22,22.24,34.27,11.5,2.81,39.25,1.08 +2020-06-09 03:00:00,72.94,137.97,41.22,35.58,15.32,1.14,19.45,36.1,13.74,2.54,31.23,1.12 +2020-06-09 04:00:00,76.45,143.86,39.71,33.45,17.18,1.13,20.18,35.56,14.16,2.61,50.94,1.41 +2020-06-09 05:00:00,76.46,149.02,36.87,32.33,16.52,1.14,19.15,34.74,14.88,3.04,46.7,1.31 +2020-06-09 06:00:00,78.01,150.95,37.62,31.94,15.48,1.14,14.72,39.1,19.21,2.63,36.72,1.84 +2020-06-09 07:00:00,81.63,154.59,39.37,33.86,15.85,1.26,14.4,50.02,31.12,2.81,34.3,2.0 +2020-06-09 08:00:00,82.3,164.39,40.48,35.61,16.26,1.2,21.69,37.71,15.82,3.42,34.03,1.63 +2020-06-09 09:00:00,71.65,150.06,34.51,34.76,16.74,1.06,40.59,30.23,11.12,3.06,23.32,1.72 +2020-06-09 10:00:00,59.31,127.44,29.2,34.26,15.91,0.92,61.78,27.69,12.62,2.64,19.17,1.34 +2020-06-09 11:00:00,49.47,121.53,23.29,33.53,13.55,0.87,79.19,20.21,7.03,1.95,16.72,0.64 +2020-06-09 12:00:00,50.03,129.33,21.19,33.56,13.05,0.84,83.7,18.64,6.37,1.6,15.56,0.45 +2020-06-09 13:00:00,52.66,153.57,18.78,34.61,12.51,0.8,82.23,17.31,6.84,1.53,14.0,0.37 +2020-06-09 14:00:00,52.27,158.81,17.12,35.91,12.2,0.77,82.41,16.3,6.74,1.31,14.97,0.22 +2020-06-09 15:00:00,48.97,154.44,17.55,35.18,12.01,0.71,75.81,16.74,6.75,1.35,14.42,0.25 +2020-06-09 16:00:00,47.75,153.65,15.87,35.12,12.31,0.69,79.37,15.72,7.2,1.27,14.58,0.14 +2020-06-09 17:00:00,51.07,144.7,20.26,35.23,11.9,0.73,86.41,17.62,12.41,1.33,19.27,0.14 +2020-06-09 18:00:00,52.94,138.98,19.01,34.38,12.32,0.74,91.48,18.42,7.78,1.19,23.53,0.13 +2020-06-09 19:00:00,55.91,135.55,25.71,34.1,13.83,0.83,83.71,21.36,7.38,1.37,24.62,1.11 +2020-06-09 20:00:00,59.78,144.7,34.36,32.45,14.78,0.99,61.09,26.22,6.97,1.73,28.87,0.54 +2020-06-09 21:00:00,65.37,166.87,40.21,31.82,15.67,1.18,41.99,30.1,7.27,2.54,37.4,0.83 +2020-06-09 22:00:00,70.36,172.07,43.65,31.64,16.32,1.3,27.93,33.01,8.32,2.6,33.24,1.89 +2020-06-09 23:00:00,69.91,167.93,49.51,33.04,16.91,1.31,18.05,40.64,12.84,2.53,29.82,1.86 +2020-06-10 00:00:00,70.84,163.74,47.87,32.41,18.22,1.29,14.78,40.56,14.22,3.0,32.79,1.39 +2020-06-10 01:00:00,78.84,171.69,45.81,32.82,15.37,1.28,14.36,41.67,16.52,2.82,37.92,1.17 +2020-06-10 02:00:00,76.66,166.1,45.37,34.53,16.63,1.27,15.1,46.53,21.25,3.4,32.17,1.47 +2020-06-10 03:00:00,76.38,163.29,46.07,35.11,20.0,1.23,15.95,53.85,30.72,2.85,32.13,4.25 +2020-06-10 04:00:00,75.35,158.51,44.02,33.32,17.42,1.21,13.25,48.88,26.44,2.4,44.48,1.66 +2020-06-10 05:00:00,76.15,157.44,41.77,32.39,15.42,1.19,15.04,48.4,26.9,2.8,40.66,2.06 +2020-06-10 06:00:00,73.81,161.52,40.41,31.29,14.43,1.2,12.94,52.06,31.86,2.64,38.64,2.18 +2020-06-10 07:00:00,74.39,161.71,38.94,31.57,15.55,1.14,12.74,51.1,31.91,2.8,34.44,3.0 +2020-06-10 08:00:00,66.36,156.29,41.31,31.63,16.79,1.09,16.57,46.98,25.5,2.72,29.04,2.69 +2020-06-10 09:00:00,62.6,157.42,37.91,32.52,15.86,1.0,32.07,37.58,16.93,2.8,23.26,1.36 +2020-06-10 10:00:00,63.02,159.22,30.47,34.46,14.26,0.97,57.16,30.16,13.15,2.44,16.52,1.82 +2020-06-10 11:00:00,59.87,154.07,25.68,34.16,13.63,0.87,73.49,25.72,11.25,2.17,14.38,4.05 +2020-06-10 12:00:00,55.03,149.91,20.91,34.49,14.13,0.79,81.66,22.13,9.98,2.16,12.52,0.76 +2020-06-10 13:00:00,50.83,143.93,19.48,35.1,14.12,0.77,79.22,20.89,9.58,1.5,11.21,0.3 +2020-06-10 14:00:00,44.7,140.42,16.53,34.78,13.02,0.74,77.52,19.0,9.05,1.34,10.68,0.06 +2020-06-10 15:00:00,40.64,130.14,16.58,35.32,13.24,0.71,82.79,18.09,8.28,1.27,14.75,0.0 +2020-06-10 16:00:00,41.12,132.03,17.36,35.28,14.11,0.71,86.47,19.18,9.15,1.44,17.34,0.0 +2020-06-10 17:00:00,46.99,161.71,19.64,34.0,13.86,0.73,83.78,20.31,8.84,1.17,17.72,1.23 +2020-06-10 18:00:00,56.88,255.25,28.55,32.32,12.99,0.78,63.43,26.18,10.19,1.41,25.8,2.72 +2020-06-10 19:00:00,58.49,263.32,26.64,31.34,9.78,0.87,46.49,25.93,10.8,1.18,15.75,0.0 +2020-06-10 20:00:00,38.16,124.17,33.66,30.92,9.52,1.09,33.84,29.19,10.24,1.3,15.57,0.0 +2020-06-10 21:00:00,38.6,96.24,46.29,31.93,9.87,1.23,19.98,37.31,11.21,1.81,19.57,0.0 +2020-06-10 22:00:00,41.52,110.89,51.77,33.85,10.27,1.32,12.94,44.4,16.02,2.15,25.86,4.19 +2020-06-10 23:00:00,46.38,111.94,40.5,32.91,10.51,1.14,17.56,35.99,13.21,2.44,27.43,0.0 +2020-06-11 00:00:00,46.55,110.31,30.38,32.62,10.3,0.83,22.05,27.61,10.03,1.69,19.46,0.0 +2020-06-11 01:00:00,42.64,106.97,28.09,33.28,9.48,0.79,17.54,25.65,9.68,1.2,14.98,0.0 +2020-06-11 02:00:00,38.28,102.53,27.69,35.98,8.94,0.83,14.27,26.35,10.7,1.26,12.32,0.0 +2020-06-11 03:00:00,36.49,95.2,29.31,36.94,9.17,0.83,13.8,29.14,12.24,1.14,12.03,0.0 +2020-06-11 04:00:00,37.06,94.02,30.41,33.95,9.62,0.85,12.32,29.25,12.4,1.28,14.72,0.0 +2020-06-11 05:00:00,42.59,102.24,32.76,33.07,11.81,0.87,12.2,32.65,15.02,1.55,18.9,0.23 +2020-06-11 06:00:00,49.9,108.51,32.95,33.69,13.26,0.97,10.6,35.28,17.42,2.55,20.13,0.0 +2020-06-11 07:00:00,56.81,120.21,34.4,35.4,13.98,1.08,11.97,36.82,18.48,2.85,26.57,0.0 +2020-06-11 08:00:00,78.19,162.7,36.09,36.27,16.11,1.03,15.83,34.67,14.81,3.38,30.11,0.0 +2020-06-11 09:00:00,77.45,169.09,30.12,35.99,14.36,0.89,25.94,29.42,12.46,2.1,23.05,0.18 +2020-06-11 10:00:00,56.53,136.19,25.88,36.92,11.74,0.84,38.23,25.31,10.59,1.57,18.32,0.05 +2020-06-11 11:00:00,52.63,134.46,22.6,38.98,12.31,0.77,54.97,22.66,9.79,1.62,19.69,0.44 +2020-06-11 12:00:00,54.78,133.11,22.57,36.5,11.93,0.75,70.78,22.78,9.37,1.33,23.58,5.99 +2020-06-11 13:00:00,56.81,129.24,19.79,37.92,13.26,0.68,66.97,21.5,10.02,1.51,20.0,2.54 +2020-06-11 14:00:00,51.18,126.85,19.76,38.75,13.75,0.69,75.55,22.77,10.99,1.46,18.64,0.18 +2020-06-11 15:00:00,64.34,126.6,21.72,38.68,12.63,0.69,84.36,25.72,12.93,1.62,18.66,0.18 +2020-06-11 16:00:00,51.01,125.04,22.28,38.51,12.4,0.68,80.11,27.99,14.34,1.31,18.23,0.17 +2020-06-11 17:00:00,49.48,125.64,20.88,38.73,11.8,0.66,81.02,27.55,14.58,1.61,18.08,1.03 +2020-06-11 18:00:00,48.4,130.7,24.72,36.98,11.2,0.73,83.05,27.95,13.21,1.37,20.96,4.14 +2020-06-11 19:00:00,45.32,136.3,34.8,37.32,12.06,0.95,62.23,28.36,8.9,1.41,32.01,0.26 +2020-06-11 20:00:00,55.12,159.14,44.7,38.07,12.65,1.22,40.91,35.02,9.61,2.13,33.28,0.78 +2020-06-11 21:00:00,67.35,185.14,51.42,37.6,14.14,1.47,28.65,42.51,13.5,2.77,36.23,1.49 +2020-06-11 22:00:00,73.5,201.53,53.25,38.25,20.43,1.49,26.87,43.82,13.37,2.67,33.55,2.45 +2020-06-11 23:00:00,80.24,202.95,46.04,36.67,18.42,1.37,24.79,39.13,12.5,2.83,34.84,3.23 +2020-06-12 00:00:00,79.13,198.09,38.97,36.5,17.39,1.18,29.24,35.21,12.37,2.51,28.01,3.45 +2020-06-12 01:00:00,77.39,183.87,32.52,36.29,12.74,1.03,21.55,30.29,12.18,2.78,21.86,2.14 +2020-06-12 02:00:00,73.33,165.01,27.84,37.54,13.61,1.02,22.27,26.39,10.05,2.3,15.81,1.06 +2020-06-12 03:00:00,67.35,150.37,27.55,39.03,14.27,0.98,21.52,26.48,10.54,2.17,15.1,0.64 +2020-06-12 04:00:00,66.24,141.81,25.19,35.62,12.88,0.97,21.58,25.35,11.23,2.29,12.49,0.38 +2020-06-12 05:00:00,62.95,146.07,24.49,35.47,12.85,0.95,21.91,23.87,9.92,2.28,14.75,0.34 +2020-06-12 06:00:00,62.85,134.51,25.89,35.33,13.66,1.03,19.49,24.57,10.03,2.39,12.85,0.3 +2020-06-12 07:00:00,65.73,132.21,27.82,36.03,11.69,1.06,19.01,27.38,11.43,2.23,10.29,0.34 +2020-06-12 08:00:00,70.19,143.02,27.1,37.42,11.72,1.18,21.48,26.49,11.24,2.03,9.73,0.16 +2020-06-12 09:00:00,65.18,134.3,27.04,37.99,10.99,1.11,30.93,26.53,11.1,2.15,8.67,0.11 +2020-06-12 10:00:00,64.75,132.44,27.64,39.75,11.65,1.22,40.02,30.35,15.34,2.06,8.42,0.22 +2020-06-12 11:00:00,62.96,137.91,25.52,42.92,11.17,1.19,51.23,25.23,10.34,1.81,9.51,0.16 +2020-06-12 12:00:00,63.03,146.47,23.36,43.5,11.94,0.95,62.57,24.85,10.83,1.9,8.97,0.15 +2020-06-12 13:00:00,63.15,141.32,20.85,43.14,12.22,0.89,72.38,22.14,9.93,1.62,10.93,0.12 +2020-06-12 14:00:00,55.08,155.54,23.01,41.77,11.88,0.81,68.71,25.61,12.13,1.6,10.78,0.1 +2020-06-12 15:00:00,49.2,139.81,24.32,40.34,12.14,0.76,70.78,27.84,13.4,1.64,25.8,0.17 +2020-06-12 16:00:00,52.29,129.41,21.6,40.2,13.06,0.74,86.0,24.85,12.41,1.46,23.62,0.06 +2020-06-12 17:00:00,57.14,145.82,19.72,39.78,13.11,0.73,88.63,26.84,14.67,1.43,24.79,0.0 +2020-06-12 18:00:00,55.36,152.35,21.5,38.77,11.16,0.76,81.36,25.11,12.09,1.44,26.8,0.02 +2020-06-12 19:00:00,57.23,155.64,31.02,38.1,12.15,0.95,67.51,32.72,14.28,1.78,26.3,0.23 +2020-06-12 20:00:00,57.67,161.12,45.6,39.54,13.34,1.29,45.95,40.49,14.18,2.46,39.67,0.79 +2020-06-12 21:00:00,66.63,172.38,56.04,38.14,14.02,1.6,27.65,48.74,17.31,2.71,47.25,1.39 +2020-06-12 22:00:00,70.7,185.92,53.96,36.69,14.86,1.62,23.74,48.74,17.43,3.57,36.77,1.75 +2020-06-12 23:00:00,70.5,179.35,42.7,37.54,15.11,1.3,25.32,37.65,13.48,3.13,27.58,1.93 +2020-06-13 00:00:00,65.92,162.44,32.64,36.85,14.65,1.1,28.65,29.77,11.06,2.67,25.63,1.21 +2020-06-13 01:00:00,61.21,141.04,28.3,36.62,11.49,0.96,32.04,25.67,9.34,2.17,18.84,0.94 +2020-06-13 02:00:00,59.39,126.3,22.7,38.36,10.34,0.89,29.75,21.51,8.58,1.98,14.72,0.6 +2020-06-13 03:00:00,58.93,117.6,23.04,41.46,9.99,0.81,29.96,23.02,9.78,1.85,17.48,0.44 +2020-06-13 04:00:00,51.32,103.22,22.36,38.52,9.62,0.8,27.73,21.41,9.13,1.84,15.72,0.21 +2020-06-13 05:00:00,48.71,96.15,23.59,36.47,9.53,0.84,23.54,23.34,10.45,1.69,15.91,0.3 +2020-06-13 06:00:00,52.22,98.88,24.22,35.27,10.0,0.86,20.17,23.49,9.9,1.9,13.65,0.18 +2020-06-13 07:00:00,52.93,104.37,26.25,35.52,10.75,0.93,19.9,25.52,10.63,2.3,11.92,0.25 +2020-06-13 08:00:00,53.83,112.33,25.68,36.73,12.3,0.96,24.47,25.26,10.84,2.67,11.52,0.15 +2020-06-13 09:00:00,55.46,125.3,23.84,36.97,11.82,0.99,30.02,23.97,10.71,2.48,10.12,0.14 +2020-06-13 10:00:00,58.39,122.5,22.96,36.96,10.78,1.01,40.27,23.79,10.98,2.29,9.62,0.17 +2020-06-13 11:00:00,59.31,124.22,21.0,36.78,10.72,0.97,48.14,20.63,8.74,2.18,8.62,0.15 +2020-06-13 12:00:00,73.51,140.65,17.58,36.38,9.65,0.91,54.62,16.81,6.85,2.11,11.22,0.18 +2020-06-13 13:00:00,61.02,125.59,17.72,36.07,9.3,0.93,53.02,15.95,6.19,1.81,9.62,0.16 +2020-06-13 14:00:00,52.85,120.61,23.4,36.73,9.74,0.96,46.86,20.49,7.43,1.85,9.99,0.18 +2020-06-13 15:00:00,50.05,123.09,23.41,36.46,10.73,0.92,43.95,19.91,7.07,1.96,15.79,0.14 +2020-06-13 16:00:00,36.93,123.16,21.58,37.43,9.21,0.79,48.06,21.14,10.08,1.72,12.51,0.2 +2020-06-13 17:00:00,28.34,67.39,29.54,36.43,9.54,0.81,36.43,25.8,9.9,1.75,20.66,0.2 +2020-06-13 18:00:00,25.66,76.45,27.35,37.6,9.24,0.86,41.25,22.87,7.88,2.13,32.11,0.34 +2020-06-13 19:00:00,40.44,152.08,21.57,36.6,9.5,0.86,47.65,18.24,6.46,1.85,26.34,0.76 +2020-06-13 20:00:00,48.54,205.49,28.09,34.7,10.37,1.0,37.91,23.92,9.41,2.01,25.62,0.58 +2020-06-13 21:00:00,47.75,178.62,31.68,34.22,10.38,1.11,28.89,23.75,6.85,2.44,24.52,1.26 +2020-06-13 22:00:00,54.49,177.71,35.04,34.91,12.07,1.19,24.36,26.03,7.07,1.98,24.74,1.98 +2020-06-13 23:00:00,59.56,178.71,37.45,34.74,12.43,1.25,21.21,27.97,8.34,2.53,30.74,2.07 +2020-06-14 00:00:00,63.61,181.02,41.08,34.57,14.58,1.29,18.52,32.99,13.04,3.07,33.58,1.99 +2020-06-14 01:00:00,65.33,184.8,37.92,35.15,13.02,1.19,22.2,33.11,13.16,2.91,41.32,2.05 +2020-06-14 02:00:00,75.28,191.11,33.12,37.78,13.23,1.19,15.64,27.78,10.26,3.43,33.76,1.79 +2020-06-14 03:00:00,83.59,193.15,31.79,39.7,14.29,1.08,14.2,25.82,8.69,3.37,29.99,1.79 +2020-06-14 04:00:00,95.34,196.03,28.7,38.39,14.93,1.06,13.92,24.54,9.25,2.87,29.87,2.54 +2020-06-14 05:00:00,98.31,194.21,23.66,38.41,16.03,1.02,14.88,20.44,7.86,2.9,28.7,1.56 +2020-06-14 06:00:00,93.19,183.52,23.62,39.89,18.72,1.06,13.65,20.5,8.49,3.17,25.65,0.8 +2020-06-14 07:00:00,98.74,186.25,25.32,40.32,17.83,1.09,16.35,23.2,10.05,3.19,22.81,0.73 +2020-06-14 08:00:00,105.34,194.87,25.8,41.37,18.91,1.18,23.05,22.84,9.21,3.08,21.93,3.06 +2020-06-14 09:00:00,100.92,188.64,24.66,41.24,17.55,1.19,29.39,21.55,8.74,3.16,24.85,19.78 +2020-06-14 10:00:00,90.9,166.93,22.72,39.98,14.08,1.09,36.96,19.46,7.11,2.53,20.32,0.69 +2020-06-14 11:00:00,77.25,147.27,20.26,39.18,12.85,0.99,46.51,17.76,6.91,2.22,15.97,0.34 +2020-06-14 12:00:00,66.13,122.73,19.0,39.47,11.68,0.91,50.54,17.77,7.76,2.22,13.0,0.28 +2020-06-14 13:00:00,56.39,110.91,18.77,41.76,11.5,0.87,61.6,16.31,6.36,1.8,10.69,0.14 +2020-06-14 14:00:00,50.31,99.21,15.58,39.56,11.14,0.86,73.29,14.19,5.95,1.92,10.26,0.05 +2020-06-14 15:00:00,48.73,97.28,17.77,47.28,10.89,0.8,77.35,15.35,5.81,1.64,10.81,0.05 +2020-06-14 16:00:00,48.13,99.04,16.7,46.18,11.42,0.72,76.33,14.55,5.45,1.62,11.86,0.0 +2020-06-14 17:00:00,51.35,105.39,14.9,43.2,10.35,0.7,73.46,13.71,5.59,1.5,13.0,0.0 +2020-06-14 18:00:00,52.04,107.39,15.43,40.14,11.03,0.75,69.95,13.72,5.48,1.43,17.63,0.0 +2020-06-14 19:00:00,53.1,111.59,18.67,40.26,11.49,0.83,62.77,15.5,5.54,1.32,22.85,0.0 +2020-06-14 20:00:00,53.29,121.19,26.87,40.0,12.73,1.0,47.92,20.36,5.79,1.56,28.89,0.15 +2020-06-14 21:00:00,56.67,134.39,38.56,39.33,12.56,1.25,31.54,28.46,7.36,2.04,33.31,0.54 +2020-06-14 22:00:00,59.52,141.99,44.37,38.75,12.56,1.47,20.66,35.36,11.19,2.34,27.38,0.94 +2020-06-14 23:00:00,62.42,147.73,38.94,38.1,12.34,1.35,21.91,32.86,11.58,2.71,31.26,1.87 +2020-06-15 00:00:00,58.2,132.07,26.17,37.46,11.97,1.04,27.39,21.81,8.09,2.36,21.41,2.3 +2020-06-15 01:00:00,52.38,110.31,20.81,36.47,11.39,0.89,31.27,19.21,8.49,1.72,12.98,1.03 +2020-06-15 02:00:00,45.93,91.33,24.2,39.07,11.48,0.81,28.66,19.03,6.37,1.64,10.43,0.39 +2020-06-15 03:00:00,48.01,83.82,21.29,38.73,12.09,0.76,28.43,17.23,6.2,1.58,12.4,0.32 +2020-06-15 04:00:00,43.77,79.41,20.6,37.06,11.39,0.76,24.97,16.5,5.75,1.91,13.19,0.35 +2020-06-15 05:00:00,43.23,78.21,21.18,36.54,10.17,0.77,21.63,17.04,5.79,2.09,9.85,0.11 +2020-06-15 06:00:00,43.56,81.2,25.92,35.06,10.42,0.85,16.53,20.74,7.54,2.17,12.41,0.09 +2020-06-15 07:00:00,44.9,91.3,28.5,34.56,10.84,0.94,16.36,28.69,14.38,2.1,14.88,0.16 +2020-06-15 08:00:00,43.01,99.94,25.86,35.21,11.59,0.91,22.53,25.96,13.12,2.16,14.63,0.19 +2020-06-15 09:00:00,43.66,111.36,24.37,35.93,12.68,0.86,33.14,23.59,11.12,1.89,11.51,0.16 +2020-06-15 10:00:00,50.37,125.01,23.45,36.16,13.3,0.83,47.3,21.78,9.41,1.93,10.82,0.09 +2020-06-15 11:00:00,53.54,130.83,20.56,36.16,13.56,0.84,64.94,18.15,6.96,1.86,11.82,0.12 +2020-06-15 12:00:00,50.88,126.94,18.29,35.82,13.21,0.76,75.21,17.29,6.89,1.61,11.62,0.2 +2020-06-15 13:00:00,46.06,116.58,17.43,35.97,13.12,0.73,79.08,21.43,6.23,1.79,14.14,1.42 +2020-06-15 14:00:00,43.83,117.74,16.59,38.99,13.07,0.71,84.83,14.68,5.88,1.61,12.32,1.84 +2020-06-15 15:00:00,42.78,115.31,16.8,35.73,12.36,0.65,83.82,15.63,6.64,1.4,12.12,2.21 +2020-06-15 16:00:00,41.14,117.38,18.98,33.67,12.1,0.66,85.58,16.66,6.38,1.22,10.04,0.97 +2020-06-15 17:00:00,40.3,113.9,19.74,33.2,12.09,0.65,88.54,17.33,7.1,1.08,9.83,0.34 +2020-06-15 18:00:00,40.46,116.73,22.66,33.59,12.29,0.66,82.64,19.19,7.39,1.21,11.32,0.05 +2020-06-15 19:00:00,43.47,121.14,30.78,32.95,12.73,0.81,71.42,23.55,7.64,1.34,20.98,0.04 +2020-06-15 20:00:00,48.76,145.17,43.57,31.95,13.35,1.17,46.93,30.99,7.51,1.92,33.67,0.2 +2020-06-15 21:00:00,62.42,193.76,48.21,32.32,13.85,1.4,37.03,34.21,7.73,3.11,36.43,1.46 +2020-06-15 22:00:00,66.06,194.14,46.07,32.51,16.13,1.36,32.15,32.36,6.95,2.66,33.92,1.99 +2020-06-15 23:00:00,71.85,191.94,40.76,33.9,16.62,1.29,31.01,29.87,7.54,3.23,35.17,1.52 +2020-06-16 00:00:00,76.09,186.49,33.48,33.99,15.94,1.12,32.71,27.1,8.78,3.02,33.22,1.47 +2020-06-16 01:00:00,71.23,168.47,25.0,33.66,13.16,0.95,34.3,21.54,7.35,2.83,23.59,1.02 +2020-06-16 02:00:00,56.49,138.01,18.4,35.8,12.04,0.87,34.73,15.62,5.42,2.42,19.02,0.6 +2020-06-16 03:00:00,44.9,109.41,15.98,34.96,11.62,0.76,33.83,13.79,5.53,2.1,14.12,0.24 +2020-06-16 04:00:00,38.73,87.4,14.5,32.62,11.52,0.73,31.64,12.54,4.95,1.95,10.69,0.2 +2020-06-16 05:00:00,31.69,72.82,13.63,31.7,10.69,0.7,31.52,12.55,5.56,1.78,7.66,0.16 +2020-06-16 06:00:00,25.54,57.4,14.99,30.73,10.19,0.7,30.59,14.24,6.56,1.6,8.41,0.09 +2020-06-16 07:00:00,24.31,52.89,18.94,30.52,10.37,0.73,25.68,19.11,9.39,1.23,8.13,0.0 +2020-06-16 08:00:00,23.19,55.63,20.4,31.74,10.42,0.73,24.75,18.94,8.47,1.33,7.64,0.04 +2020-06-16 09:00:00,26.63,64.81,20.69,32.4,10.9,0.8,31.22,19.36,8.66,1.5,8.14,0.09 +2020-06-16 10:00:00,28.89,77.27,21.75,33.01,11.2,0.86,42.73,19.4,7.63,1.55,9.05,0.04 +2020-06-16 11:00:00,31.61,88.78,20.75,33.76,11.53,0.85,52.21,18.32,7.33,1.69,9.96,0.1 +2020-06-16 12:00:00,37.17,102.18,19.67,34.43,11.23,0.79,65.46,16.73,6.35,1.9,9.63,0.55 +2020-06-16 13:00:00,36.23,102.89,25.89,34.91,11.81,0.77,77.57,15.36,19.93,2.04,10.7,1.39 +2020-06-16 14:00:00,34.06,101.96,17.64,35.99,12.49,0.74,92.0,15.84,6.04,1.4,15.81,0.11 +2020-06-16 15:00:00,34.23,100.2,17.2,35.6,12.75,0.72,98.45,14.53,4.57,1.43,18.52,0.0 +2020-06-16 16:00:00,34.2,95.58,19.32,35.02,12.71,0.67,100.62,16.1,5.52,1.45,17.89,0.0 +2020-06-16 17:00:00,33.52,96.28,18.67,33.1,11.95,0.7,94.33,14.92,4.76,1.35,22.15,0.0 +2020-06-16 18:00:00,34.17,105.5,23.96,31.08,11.51,0.8,86.86,18.03,4.42,1.55,27.52,0.0 +2020-06-16 19:00:00,36.61,119.33,33.41,31.0,11.97,0.98,66.59,25.79,7.91,1.87,32.2,0.11 +2020-06-16 20:00:00,42.15,137.9,43.74,30.01,12.64,1.21,47.24,30.1,6.4,2.57,35.43,0.68 +2020-06-16 21:00:00,46.99,149.32,50.47,29.38,13.45,1.46,31.14,36.47,7.83,3.22,41.53,1.61 +2020-06-16 22:00:00,54.32,161.14,47.44,28.93,14.14,1.43,29.19,36.49,9.42,3.01,40.01,2.01 +2020-06-16 23:00:00,53.98,160.13,33.99,28.48,13.68,1.07,38.19,26.77,7.72,3.02,32.0,1.74 +2020-06-17 00:00:00,52.46,137.03,26.14,27.69,12.62,0.89,40.27,23.03,8.33,2.53,26.12,0.78 +2020-06-17 01:00:00,48.42,120.44,20.02,28.76,11.44,0.8,39.92,17.87,7.04,2.18,20.73,0.49 +2020-06-17 02:00:00,42.61,109.15,13.84,29.71,10.32,0.75,33.82,12.17,4.71,1.93,17.83,0.3 +2020-06-17 03:00:00,33.68,91.11,13.17,28.97,9.12,0.68,30.07,11.9,4.75,1.56,14.77,0.18 +2020-06-17 04:00:00,27.45,69.91,12.58,26.31,9.12,0.67,27.91,11.35,4.59,1.22,13.02,0.08 +2020-06-17 05:00:00,20.76,54.08,12.7,25.18,8.85,0.66,26.67,11.29,4.59,1.14,12.55,0.0 +2020-06-17 06:00:00,19.69,48.4,14.28,25.18,9.13,0.66,23.81,12.61,5.22,1.25,13.11,0.0 +2020-06-17 07:00:00,21.52,53.94,14.23,26.01,10.17,0.72,21.76,13.35,5.9,1.39,13.77,0.0 +2020-06-17 08:00:00,25.98,63.52,15.1,27.0,10.38,0.75,23.91,14.7,6.69,1.38,13.66,0.0 +2020-06-17 09:00:00,26.11,64.53,15.84,27.53,9.85,0.75,28.37,14.63,6.11,1.38,8.45,0.08 +2020-06-17 10:00:00,26.12,69.09,16.51,28.27,10.2,0.82,35.61,15.23,6.43,1.37,7.8,0.07 +2020-06-17 11:00:00,27.95,77.47,16.53,28.72,10.4,0.79,44.87,14.32,5.38,1.22,8.58,0.12 +2020-06-17 12:00:00,32.81,85.2,15.56,28.92,9.61,0.78,54.51,13.54,5.17,1.34,9.7,0.09 +2020-06-17 13:00:00,34.88,100.93,15.58,29.78,10.23,0.79,64.18,13.8,5.33,1.3,9.64,0.11 +2020-06-17 14:00:00,35.43,96.78,16.15,30.19,10.4,0.78,73.24,14.14,5.29,1.33,9.19,0.03 +2020-06-17 15:00:00,33.84,96.04,15.53,32.72,13.4,0.74,80.1,13.5,5.0,1.47,9.37,0.0 +2020-06-17 16:00:00,34.85,99.02,16.59,33.53,11.99,0.72,86.17,14.34,4.87,1.45,10.31,0.0 +2020-06-17 17:00:00,34.07,98.41,17.62,34.67,12.43,0.72,94.1,14.75,4.63,1.29,11.99,0.0 +2020-06-17 18:00:00,37.48,106.29,18.31,33.51,12.68,0.73,89.94,15.27,5.01,1.37,21.98,0.11 +2020-06-17 19:00:00,39.17,113.95,21.46,31.97,12.13,0.83,69.73,17.18,5.38,1.87,25.68,0.18 +2020-06-17 20:00:00,39.82,125.21,21.95,30.95,12.57,0.9,51.81,17.32,5.41,2.21,28.41,0.63 +2020-06-17 21:00:00,43.08,123.71,21.03,30.32,11.72,0.94,45.76,16.9,5.3,1.87,19.36,0.63 +2020-06-17 22:00:00,44.88,114.09,19.4,29.83,10.59,0.9,43.67,16.14,5.2,1.5,13.06,0.41 +2020-06-17 23:00:00,41.33,103.59,16.43,29.9,10.7,0.85,39.15,14.23,4.9,1.54,11.35,0.23 +2020-06-18 00:00:00,35.74,101.36,14.59,29.01,11.81,0.74,31.4,13.34,5.53,1.48,8.63,0.14 +2020-06-18 01:00:00,27.22,81.96,13.99,27.98,11.92,0.71,28.35,12.72,5.22,1.31,6.8,0.04 +2020-06-18 02:00:00,24.29,62.53,14.26,29.52,11.72,0.7,25.62,12.89,5.37,1.23,7.22,0.3 +2020-06-18 03:00:00,25.79,58.97,13.0,30.18,10.35,0.68,25.17,12.41,5.63,1.28,7.0,0.0 +2020-06-18 04:00:00,29.62,57.81,12.8,27.84,10.02,0.69,24.33,12.23,5.77,1.15,8.07,0.03 +2020-06-18 05:00:00,30.21,54.14,12.43,26.9,9.51,0.71,23.46,11.65,5.39,1.09,6.98,0.0 +2020-06-18 06:00:00,31.82,54.74,14.94,27.06,9.77,0.76,20.3,13.8,6.19,1.47,7.56,0.02 +2020-06-18 07:00:00,32.44,62.52,16.92,27.71,10.18,0.81,17.61,15.99,7.23,1.66,7.01,0.03 +2020-06-18 08:00:00,35.01,72.61,18.53,28.23,11.25,0.81,20.65,17.95,8.0,1.78,8.18,0.03 +2020-06-18 09:00:00,37.83,93.41,19.58,28.12,12.14,0.83,25.0,18.89,8.4,1.54,8.73,0.0 +2020-06-18 10:00:00,34.98,81.13,20.61,28.3,12.56,0.94,33.08,20.29,9.37,1.39,9.28,0.08 +2020-06-18 11:00:00,33.68,90.7,18.73,28.63,12.22,0.87,45.41,16.89,6.57,1.53,9.42,0.29 +2020-06-18 12:00:00,35.04,102.61,17.53,28.11,11.98,0.82,57.71,15.31,5.83,1.17,9.49,0.19 +2020-06-18 13:00:00,36.34,118.27,16.27,28.76,11.97,0.82,70.87,13.82,5.15,1.33,9.2,0.16 +2020-06-18 14:00:00,37.64,120.93,16.96,30.12,11.67,0.8,82.26,14.44,5.51,1.29,9.93,0.08 +2020-06-18 15:00:00,41.33,125.15,17.23,32.59,12.16,0.76,89.85,14.71,5.49,1.21,9.73,0.1 +2020-06-18 16:00:00,40.91,125.67,19.44,31.41,12.31,0.73,85.77,15.88,5.45,1.33,17.2,0.08 +2020-06-18 17:00:00,40.66,125.38,20.78,30.47,11.72,0.7,85.65,17.15,6.04,1.46,13.55,0.09 +2020-06-18 18:00:00,41.3,126.28,20.11,29.63,12.63,0.74,83.24,15.93,5.59,1.45,20.5,0.07 +2020-06-18 19:00:00,39.95,130.74,25.47,28.43,13.5,0.91,78.15,18.62,5.46,1.59,20.28,0.25 +2020-06-18 20:00:00,45.13,149.97,29.46,28.32,14.51,1.08,58.92,21.12,5.56,2.37,27.41,0.92 +2020-06-18 21:00:00,52.18,157.42,26.27,27.8,15.77,1.08,47.73,19.49,5.5,2.29,25.22,1.15 +2020-06-18 22:00:00,49.58,140.33,21.13,27.19,14.33,0.95,45.24,16.29,5.15,1.95,17.9,0.7 +2020-06-18 23:00:00,45.55,120.21,18.55,26.02,16.45,0.93,45.67,14.78,5.14,1.76,12.97,0.47 +2020-06-19 00:00:00,45.67,111.18,19.42,26.63,15.03,0.93,47.38,15.9,5.65,1.69,11.4,0.38 +2020-06-19 01:00:00,49.41,116.97,16.73,27.26,12.22,0.88,39.51,13.99,5.46,1.69,9.51,0.59 +2020-06-19 02:00:00,50.93,117.83,14.19,30.39,12.79,0.84,29.9,12.23,5.16,1.8,10.13,0.14 +2020-06-19 03:00:00,45.12,108.31,12.35,29.77,11.51,0.74,24.46,11.36,5.3,1.45,7.73,0.04 +2020-06-19 04:00:00,35.29,86.09,11.41,26.5,11.04,0.7,25.45,10.77,5.29,1.32,6.32,0.0 +2020-06-19 05:00:00,29.8,65.4,12.18,25.39,9.97,0.69,25.44,11.15,5.56,1.16,5.05,0.03 +2020-06-19 06:00:00,29.78,57.73,14.31,25.0,10.04,0.72,22.08,12.91,6.13,1.1,4.7,0.0 +2020-06-19 07:00:00,29.45,59.61,17.78,24.81,10.13,0.8,19.67,18.05,9.53,1.1,5.62,0.0 +2020-06-19 08:00:00,32.41,66.62,18.05,26.38,10.6,0.84,19.52,18.68,9.99,1.22,6.04,0.09 +2020-06-19 09:00:00,34.96,83.68,19.05,26.93,11.94,0.86,22.47,18.28,8.83,1.32,6.76,0.14 +2020-06-19 10:00:00,39.77,105.57,20.36,27.14,12.48,0.89,29.06,19.11,9.09,1.43,8.98,0.15 +2020-06-19 11:00:00,48.2,171.87,19.24,28.17,12.94,0.86,40.49,16.73,6.98,1.48,10.34,0.19 +2020-06-19 12:00:00,66.22,279.0,18.64,28.5,13.63,0.86,52.98,15.81,5.52,1.67,14.3,0.18 +2020-06-19 13:00:00,79.37,353.57,19.47,28.2,13.57,0.84,63.63,15.81,5.19,1.82,15.23,0.24 +2020-06-19 14:00:00,83.37,363.73,18.3,29.02,13.23,0.79,62.92,15.11,6.15,1.81,15.12,0.3 +2020-06-19 15:00:00,86.57,370.45,18.16,29.45,12.36,0.83,65.23,16.7,6.61,1.81,18.13,0.19 +2020-06-19 16:00:00,87.35,378.63,17.25,29.74,12.25,0.81,64.78,15.36,5.7,1.76,14.26,0.24 +2020-06-19 17:00:00,84.78,366.27,17.81,29.98,11.48,0.86,61.31,15.84,7.35,1.79,22.31,0.16 +2020-06-19 18:00:00,81.96,348.13,20.08,29.48,11.22,0.92,61.79,16.5,7.18,2.27,25.87,0.25 +2020-06-19 19:00:00,78.19,329.65,23.55,28.85,11.06,0.99,51.76,18.53,7.5,2.43,27.2,0.66 +2020-06-19 20:00:00,74.32,305.83,22.14,29.13,12.04,1.03,43.6,17.88,7.03,2.41,28.97,0.82 +2020-06-19 21:00:00,67.82,269.07,19.25,28.91,11.92,1.01,38.43,16.07,7.09,1.82,20.97,0.75 +2020-06-19 22:00:00,62.81,225.48,19.33,28.17,11.99,0.98,36.55,16.25,4.93,1.98,22.1,0.57 +2020-06-19 23:00:00,58.88,192.7,17.71,27.35,12.03,0.95,34.5,14.64,4.64,2.24,19.85,0.45 +2020-06-20 00:00:00,53.67,151.38,15.69,27.27,11.23,0.93,29.9,13.8,5.05,2.19,15.79,0.28 +2020-06-20 01:00:00,48.23,115.6,13.9,27.04,10.16,0.86,27.39,12.64,4.89,1.65,9.46,0.16 +2020-06-20 02:00:00,37.34,88.08,12.07,30.54,10.7,0.78,27.33,11.24,4.54,1.38,7.27,0.11 +2020-06-20 03:00:00,29.7,67.03,11.28,30.34,12.1,0.69,27.84,10.85,4.72,1.22,6.2,0.05 +2020-06-20 04:00:00,25.37,54.99,11.58,26.98,11.87,0.69,24.72,10.67,4.25,1.21,6.5,0.0 +2020-06-20 05:00:00,23.85,54.11,11.42,25.96,10.37,0.67,25.6,10.63,4.41,1.23,6.32,0.03 +2020-06-20 06:00:00,23.32,60.18,18.2,26.32,9.28,0.63,31.73,14.28,5.42,1.13,6.06,0.01 +2020-06-20 07:00:00,18.28,48.65,22.5,24.72,9.89,0.73,25.35,20.31,7.79,1.22,11.15,0.0 +2020-06-20 08:00:00,24.45,72.03,25.59,25.81,9.83,0.79,21.56,25.45,11.53,1.08,13.42,0.06 +2020-06-20 09:00:00,35.7,137.55,20.04,25.65,9.98,0.68,29.33,19.58,8.67,0.85,9.38,0.15 +2020-06-20 10:00:00,41.76,162.02,18.8,25.75,11.5,0.71,29.45,19.91,9.2,0.8,12.45,0.14 +2020-06-20 11:00:00,36.56,109.1,19.61,26.05,10.43,0.76,30.45,19.35,8.29,1.23,20.58,0.13 +2020-06-20 12:00:00,42.71,119.5,19.33,26.03,11.46,0.79,33.56,18.77,7.79,1.47,21.31,0.23 +2020-06-20 13:00:00,43.34,125.32,19.39,25.48,12.24,0.78,41.73,18.11,6.98,1.75,21.33,0.35 +2020-06-20 14:00:00,42.5,130.43,20.06,26.16,12.8,0.8,58.25,16.04,4.85,1.73,16.2,0.36 +2020-06-20 15:00:00,43.67,126.52,19.86,26.0,12.34,0.81,64.73,16.67,5.66,1.56,14.07,0.43 +2020-06-20 16:00:00,44.88,135.27,20.46,27.25,10.94,0.8,72.84,16.83,5.2,1.44,14.6,0.34 +2020-06-20 17:00:00,44.04,149.35,22.41,28.14,11.19,0.85,77.17,17.58,4.77,1.83,13.86,0.21 +2020-06-20 18:00:00,45.89,161.55,26.2,27.12,10.53,0.89,53.84,21.44,6.86,1.55,15.93,0.19 +2020-06-20 19:00:00,41.84,160.53,25.45,25.97,9.82,0.87,36.25,21.44,7.3,1.64,21.13,0.19 +2020-06-20 20:00:00,32.59,117.06,26.04,25.17,9.67,0.85,32.24,22.24,7.73,1.39,19.7,0.34 +2020-06-20 21:00:00,28.82,86.23,24.41,24.56,9.69,0.88,30.46,19.98,5.81,1.27,18.86,0.25 +2020-06-20 22:00:00,25.6,81.95,30.66,24.55,11.65,0.99,21.27,24.09,6.41,1.24,18.45,0.25 +2020-06-20 23:00:00,28.84,95.18,34.0,24.36,13.81,1.03,16.74,28.2,8.65,2.0,27.26,0.65 +2020-06-21 00:00:00,31.69,97.79,34.34,24.7,11.19,1.04,15.62,30.6,11.38,1.74,24.93,0.61 +2020-06-21 01:00:00,32.33,95.63,34.73,24.8,10.34,0.99,14.88,33.51,14.91,1.69,22.25,0.7 +2020-06-21 02:00:00,33.84,95.56,32.21,29.27,10.68,0.89,17.18,27.98,10.16,1.74,23.7,1.22 +2020-06-21 03:00:00,34.56,95.84,26.4,26.94,10.83,0.81,17.16,22.67,8.24,1.6,24.81,1.57 +2020-06-21 04:00:00,34.99,92.18,22.74,25.71,10.43,0.74,19.19,20.0,7.45,1.65,23.6,1.23 +2020-06-21 05:00:00,37.49,92.23,21.12,24.7,10.25,0.81,18.07,18.68,6.93,1.64,21.97,0.83 +2020-06-21 06:00:00,35.09,81.12,27.06,24.1,9.75,0.68,24.29,16.5,7.18,1.69,22.4,0.98 +2020-06-21 07:00:00,26.08,58.15,32.4,23.17,9.26,0.75,20.41,17.62,6.95,1.13,16.18,0.52 +2020-06-21 08:00:00,28.07,58.87,23.58,24.77,10.62,0.83,18.23,24.26,11.93,1.25,17.48,0.34 +2020-06-21 09:00:00,34.69,75.64,24.8,26.41,11.04,0.86,18.06,24.84,12.05,1.32,16.48,0.42 +2020-06-21 10:00:00,38.14,82.4,24.58,27.16,11.04,0.89,20.82,24.13,11.01,1.47,16.7,0.46 +2020-06-21 11:00:00,42.29,91.14,22.04,28.36,12.78,0.85,31.38,20.31,8.06,1.43,16.42,0.5 +2020-06-21 12:00:00,45.43,98.21,21.32,29.35,13.43,0.84,40.98,17.74,5.6,1.45,15.86,0.45 +2020-06-21 13:00:00,48.33,103.31,23.88,29.35,13.18,0.92,38.94,18.73,5.15,1.47,18.71,0.38 +2020-06-21 14:00:00,45.1,108.26,20.22,29.85,14.12,0.85,44.47,16.94,5.35,1.64,18.05,0.52 +2020-06-21 15:00:00,44.19,108.57,17.19,30.11,14.68,0.8,52.57,14.51,4.58,1.56,15.3,0.52 +2020-06-21 16:00:00,45.32,106.05,15.55,31.31,13.38,0.75,59.92,13.84,4.84,1.3,10.5,0.39 +2020-06-21 17:00:00,44.64,103.79,15.15,34.54,12.37,0.72,66.28,13.46,4.51,1.16,9.66,0.32 +2020-06-21 18:00:00,43.15,105.82,17.69,33.18,12.42,0.74,64.5,14.44,4.47,1.29,14.57,0.17 +2020-06-21 19:00:00,44.4,111.81,20.64,34.34,12.04,0.82,54.99,15.72,4.22,1.31,17.08,0.19 +2020-06-21 20:00:00,44.64,113.77,23.73,34.81,11.71,0.92,46.18,18.2,4.57,1.78,16.6,0.55 +2020-06-21 21:00:00,45.04,110.99,25.34,31.28,11.96,0.98,39.26,18.97,4.51,1.78,15.59,0.86 +2020-06-21 22:00:00,47.63,107.89,22.72,33.99,12.08,0.93,35.67,17.55,4.44,1.67,12.11,0.78 +2020-06-21 23:00:00,45.69,100.19,19.36,29.95,11.52,0.87,35.15,16.04,4.62,1.53,10.66,0.59 +2020-06-22 00:00:00,44.33,90.87,20.45,30.04,11.23,0.88,32.32,17.68,5.39,1.36,8.88,0.45 +2020-06-22 01:00:00,43.62,86.89,19.29,34.3,10.63,0.84,32.54,16.01,4.71,1.29,8.87,0.26 +2020-06-22 02:00:00,46.4,87.65,18.0,37.44,10.5,0.82,27.55,14.73,4.49,1.43,9.31,0.26 +2020-06-22 03:00:00,48.31,90.54,16.67,36.33,10.95,0.81,27.25,14.2,4.64,1.52,10.69,0.27 +2020-06-22 04:00:00,50.82,88.48,16.83,34.22,10.72,0.79,25.35,14.27,4.54,1.74,10.99,0.28 +2020-06-22 05:00:00,50.76,87.97,16.24,33.68,10.44,0.81,23.35,14.01,4.68,1.83,9.42,0.2 +2020-06-22 06:00:00,51.01,87.55,14.65,31.57,10.72,0.81,23.17,13.35,4.94,2.06,11.54,0.16 +2020-06-22 07:00:00,38.43,71.05,11.95,29.87,9.06,0.72,33.21,11.14,4.43,1.33,9.1,0.0 +2020-06-22 08:00:00,17.8,30.32,18.63,28.52,9.4,0.78,27.07,16.65,6.54,1.13,8.34,0.0 +2020-06-22 09:00:00,18.48,33.76,21.58,30.49,10.18,0.86,23.98,21.06,9.28,1.13,11.78,0.0 +2020-06-22 10:00:00,24.0,43.86,21.76,31.1,10.3,0.88,28.53,21.41,9.47,1.1,11.77,0.0 +2020-06-22 11:00:00,30.79,60.06,21.16,35.19,12.54,0.9,42.09,19.81,7.91,1.18,14.0,0.0 +2020-06-22 12:00:00,33.64,59.83,18.39,34.82,12.12,0.87,61.05,18.43,8.12,1.19,19.48,0.0 +2020-06-22 13:00:00,31.88,60.88,16.74,33.57,13.4,0.78,66.82,15.96,6.46,1.18,14.52,0.14 +2020-06-22 14:00:00,31.8,61.42,15.96,34.44,14.04,0.72,68.65,15.19,6.01,1.44,15.68,0.15 +2020-06-22 15:00:00,29.91,59.88,15.08,34.57,11.66,0.74,68.2,13.71,5.65,1.21,15.37,0.0 +2020-06-22 16:00:00,29.56,59.87,15.8,35.27,11.44,0.76,69.16,14.74,5.52,1.16,18.84,0.07 +2020-06-22 17:00:00,30.72,60.66,16.12,36.5,10.84,0.98,67.17,14.0,4.69,1.73,16.84,0.14 +2020-06-22 18:00:00,31.62,65.75,18.89,37.64,9.94,0.88,70.62,15.5,4.51,1.28,26.99,0.17 +2020-06-22 19:00:00,35.11,78.69,23.15,36.2,10.25,0.91,60.09,17.64,4.16,1.5,29.89,0.14 +2020-06-22 20:00:00,43.65,96.92,32.36,37.09,10.78,1.27,44.63,23.16,4.45,1.82,37.89,0.35 +2020-06-22 21:00:00,54.1,121.9,39.33,37.51,11.1,1.4,35.25,27.85,5.22,2.65,46.73,1.2 +2020-06-22 22:00:00,63.22,138.31,36.15,37.74,11.76,1.37,33.63,26.42,5.29,2.25,43.27,2.08 +2020-06-22 23:00:00,67.38,136.5,29.38,35.46,12.01,1.2,34.66,22.14,4.99,2.51,32.98,2.51 +2020-06-23 00:00:00,60.82,123.38,27.03,33.97,12.12,1.12,33.34,20.76,5.01,2.49,26.36,1.61 +2020-06-23 01:00:00,56.29,115.28,21.56,34.61,10.2,0.99,29.81,17.78,5.12,2.37,21.41,1.2 +2020-06-23 02:00:00,49.13,101.36,15.79,36.74,10.32,0.87,22.4,13.7,4.67,1.77,13.35,0.59 +2020-06-23 03:00:00,33.63,70.17,12.75,36.04,10.79,0.75,20.95,11.73,4.54,1.35,10.4,0.42 +2020-06-23 04:00:00,24.51,50.43,12.43,33.75,9.86,0.74,19.12,11.43,4.38,1.15,10.07,0.32 +2020-06-23 05:00:00,20.39,40.7,12.39,32.3,9.55,0.76,17.92,11.49,4.56,1.08,9.2,0.29 +2020-06-23 06:00:00,20.07,39.17,13.83,31.1,9.89,0.79,16.77,12.71,4.76,1.0,8.49,0.14 +2020-06-23 07:00:00,20.84,43.64,15.52,29.81,10.46,0.82,17.45,14.99,6.39,1.06,8.53,0.11 +2020-06-23 08:00:00,23.57,50.67,15.33,29.06,10.81,0.85,20.35,15.86,7.65,1.03,8.72,0.13 +2020-06-23 09:00:00,25.4,55.08,15.84,29.89,12.36,0.88,22.13,16.47,7.14,0.98,8.25,0.14 +2020-06-23 10:00:00,25.7,59.91,14.74,30.81,12.28,0.87,27.48,13.81,5.43,1.0,8.15,0.12 +2020-06-23 11:00:00,27.2,62.8,14.81,32.76,13.14,0.82,37.55,13.28,5.09,1.01,9.1,0.16 +2020-06-23 12:00:00,30.59,65.84,14.0,34.84,13.61,0.8,34.06,12.66,4.94,0.92,10.2,0.24 +2020-06-23 13:00:00,32.32,64.3,13.84,35.89,13.47,0.8,38.03,12.95,5.28,1.15,27.64,0.16 +2020-06-23 14:00:00,28.16,62.34,13.42,35.12,12.44,0.76,36.33,13.01,5.46,1.12,12.88,0.25 +2020-06-23 15:00:00,21.36,51.08,13.66,33.84,11.23,0.86,36.04,14.18,6.5,1.08,14.81,0.15 +2020-06-23 16:00:00,19.58,47.71,17.11,33.32,11.6,0.96,37.0,20.3,10.97,1.06,14.06,0.11 +2020-06-23 17:00:00,20.19,50.59,19.76,33.55,8.93,0.92,37.27,19.77,13.3,1.06,11.81,0.14 +2020-06-23 18:00:00,20.85,52.83,18.8,32.79,9.34,0.93,36.65,21.27,10.49,1.1,12.59,0.16 +2020-06-23 19:00:00,21.22,54.45,18.0,32.46,10.44,0.96,33.97,15.97,5.64,1.24,14.78,0.15 +2020-06-23 20:00:00,22.18,56.99,20.03,34.39,10.4,0.95,31.24,16.9,5.38,1.23,15.32,0.27 +2020-06-23 21:00:00,24.91,65.38,19.15,35.42,10.13,0.95,28.17,17.27,6.19,1.25,12.74,0.39 +2020-06-23 22:00:00,31.66,75.89,17.75,34.6,11.19,0.97,27.52,15.51,5.42,1.28,12.12,0.43 +2020-06-23 23:00:00,35.94,78.99,15.93,32.64,11.5,0.93,25.77,14.03,4.87,1.16,10.84,0.25 +2020-06-24 00:00:00,36.86,76.94,15.45,31.39,10.22,0.94,23.58,14.41,5.61,1.11,8.87,0.15 +2020-06-24 01:00:00,33.29,65.63,13.19,31.72,9.82,0.91,22.97,13.51,5.75,1.03,6.48,0.11 +2020-06-24 02:00:00,28.64,55.22,11.16,35.78,10.16,0.87,19.77,11.33,4.73,0.97,5.77,0.08 +2020-06-24 03:00:00,27.01,52.49,12.04,36.47,10.66,0.87,19.2,11.94,4.92,1.01,5.78,0.03 +2020-06-24 04:00:00,29.54,56.82,12.34,35.25,10.2,0.83,18.08,11.78,4.71,1.06,5.35,0.06 +2020-06-24 05:00:00,31.58,56.71,11.64,33.42,9.58,0.84,18.23,11.48,4.7,1.12,6.57,0.06 +2020-06-24 06:00:00,27.8,52.4,18.4,32.12,10.39,0.84,18.35,12.13,5.13,1.13,7.88,0.06 +2020-06-24 07:00:00,26.3,49.67,13.93,30.8,10.79,0.91,20.33,14.1,6.2,1.14,8.68,0.11 +2020-06-24 08:00:00,29.75,59.4,14.43,28.8,11.2,0.92,21.95,14.56,6.46,1.2,8.61,0.12 +2020-06-24 09:00:00,33.03,64.98,15.51,29.01,11.17,0.91,22.09,15.44,12.1,1.25,7.71,0.11 +2020-06-24 10:00:00,35.24,71.13,16.52,30.05,13.52,1.0,26.51,16.78,13.0,1.3,8.21,0.12 +2020-06-24 11:00:00,39.85,82.37,17.24,30.76,12.35,0.95,29.6,16.08,6.26,1.17,8.79,0.15 +2020-06-24 12:00:00,38.01,81.63,17.55,30.97,12.86,0.91,26.24,16.25,6.23,1.31,13.12,0.19 +2020-06-24 13:00:00,26.68,61.43,17.67,30.89,14.88,0.83,22.81,17.18,7.35,1.71,15.12,0.32 +2020-06-24 14:00:00,18.78,37.25,16.94,30.73,13.71,0.93,29.04,16.7,7.09,1.66,16.93,0.36 +2020-06-24 15:00:00,20.76,42.22,16.96,30.12,11.7,0.81,33.45,16.36,6.65,1.2,13.75,0.51 +2020-06-24 16:00:00,26.27,49.58,16.36,29.7,12.18,0.82,36.46,16.27,6.56,1.11,12.81,0.4 +2020-06-24 17:00:00,30.72,56.28,15.42,30.84,9.47,0.77,35.13,15.65,6.52,1.23,18.29,0.33 +2020-06-24 18:00:00,31.83,59.51,16.95,31.11,9.4,0.78,34.53,16.75,6.72,1.33,19.38,0.34 +2020-06-24 19:00:00,30.43,63.14,19.98,31.37,9.54,0.84,32.33,18.46,6.72,1.47,23.47,0.4 +2020-06-24 20:00:00,28.61,66.77,23.18,32.32,9.45,0.92,25.81,19.69,6.34,1.5,15.72,0.48 +2020-06-24 21:00:00,32.19,81.75,24.26,31.37,10.59,0.95,22.39,20.3,6.31,1.56,17.77,0.65 +2020-06-24 22:00:00,36.68,82.14,24.0,30.4,10.42,0.97,18.47,20.01,6.23,1.44,19.21,0.62 +2020-06-24 23:00:00,42.03,77.06,23.13,29.4,10.34,0.95,17.07,20.08,6.91,1.64,16.93,0.72 +2020-06-25 00:00:00,41.59,78.92,22.08,28.5,9.49,0.92,16.77,19.92,7.37,1.56,14.07,0.62 +2020-06-25 01:00:00,42.08,74.45,20.11,29.0,10.22,0.86,17.29,18.77,7.24,1.48,13.52,0.49 +2020-06-25 02:00:00,44.38,71.72,20.15,33.59,10.33,0.83,16.78,19.11,7.55,1.45,13.7,0.43 +2020-06-25 03:00:00,45.07,75.99,21.31,33.2,11.47,0.86,15.38,21.22,9.36,1.6,15.35,0.3 +2020-06-25 04:00:00,46.12,78.94,20.34,30.62,15.42,0.98,15.74,19.65,8.47,1.78,18.36,0.3 +2020-06-25 05:00:00,56.11,78.45,18.77,30.46,11.8,0.94,15.21,18.95,8.57,1.57,17.72,0.31 +2020-06-25 06:00:00,46.73,74.77,19.36,29.66,10.01,0.92,11.07,21.35,11.29,1.46,12.4,0.4 +2020-06-25 07:00:00,39.85,72.79,21.72,30.11,10.11,0.97,11.19,26.69,16.7,1.54,11.31,0.48 +2020-06-25 08:00:00,36.12,68.93,18.72,29.0,10.0,1.11,15.69,24.6,14.86,1.38,11.06,0.43 +2020-06-25 09:00:00,35.47,70.88,18.12,29.24,10.83,1.0,22.22,22.85,12.85,1.28,10.62,0.35 +2020-06-25 10:00:00,34.1,66.81,17.58,29.71,12.73,1.0,29.69,21.66,11.84,1.19,10.93,0.25 +2020-06-25 11:00:00,31.72,62.44,16.46,31.73,12.93,1.0,40.54,19.18,9.58,1.16,10.93,0.14 +2020-06-25 12:00:00,32.08,61.44,15.67,32.99,12.45,0.94,46.68,19.4,10.92,1.17,12.66,0.08 +2020-06-25 13:00:00,29.68,63.97,15.38,33.87,13.57,0.88,49.12,16.55,8.81,1.42,17.36,0.12 +2020-06-25 14:00:00,29.24,62.53,15.88,33.26,11.89,0.75,48.12,18.91,11.19,1.65,14.78,0.3 +2020-06-25 15:00:00,32.27,89.67,14.42,32.0,10.85,0.79,42.45,14.58,6.15,1.6,23.23,0.11 +2020-06-25 16:00:00,34.66,159.35,19.33,28.15,11.06,0.92,30.39,18.0,6.98,1.04,21.3,0.15 +2020-06-25 17:00:00,24.96,58.4,23.57,29.32,12.17,1.0,30.71,21.77,8.5,1.42,17.87,0.37 +2020-06-25 18:00:00,28.48,63.33,25.95,29.0,11.27,1.23,32.35,22.7,8.21,1.7,31.7,0.44 +2020-06-25 19:00:00,31.81,73.99,28.19,28.46,10.51,1.23,32.77,22.84,7.04,2.0,32.32,0.43 +2020-06-25 20:00:00,38.37,81.46,30.13,28.65,10.59,1.36,25.13,23.77,6.39,2.24,28.95,1.02 +2020-06-25 21:00:00,44.19,90.15,32.07,29.88,10.97,1.33,21.87,26.1,7.85,2.37,37.22,1.28 +2020-06-25 22:00:00,49.1,96.52,29.27,30.9,10.21,1.34,19.18,24.77,8.26,1.92,34.4,1.77 +2020-06-25 23:00:00,46.75,90.44,29.32,30.14,9.87,1.35,15.83,24.84,8.03,2.08,28.6,1.25 +2020-06-26 00:00:00,47.97,92.69,30.17,29.02,9.84,1.4,14.65,26.39,9.43,2.15,28.14,1.21 +2020-06-26 01:00:00,52.29,96.29,29.99,29.12,12.98,1.37,18.34,28.67,12.59,2.16,45.82,1.37 +2020-06-26 02:00:00,54.85,103.76,30.45,33.69,14.24,1.14,16.8,27.07,10.67,2.4,37.31,1.6 +2020-06-26 03:00:00,60.54,106.57,25.09,36.81,13.37,1.02,20.07,24.94,11.63,2.38,31.98,1.66 +2020-06-26 04:00:00,72.7,119.44,24.4,34.2,13.76,0.97,21.83,23.94,10.67,2.3,25.28,1.36 +2020-06-26 05:00:00,76.75,124.82,22.78,33.8,12.46,1.0,19.24,22.69,10.15,2.25,26.76,0.94 +2020-06-26 06:00:00,77.93,127.0,21.59,33.02,12.26,1.07,18.78,25.56,14.35,2.17,23.74,0.78 +2020-06-26 07:00:00,86.07,122.16,23.78,30.72,11.34,1.04,16.65,28.18,15.92,2.21,23.9,0.79 +2020-06-26 08:00:00,73.46,116.84,22.33,30.51,11.63,1.08,17.46,23.6,11.62,2.14,21.19,0.89 +2020-06-26 09:00:00,66.31,112.56,21.9,30.56,11.89,1.2,21.29,20.85,8.7,2.01,19.53,0.58 +2020-06-26 10:00:00,61.83,115.29,23.12,30.63,13.23,1.13,30.14,21.36,8.56,2.29,20.71,0.57 +2020-06-26 11:00:00,65.32,126.95,22.97,33.37,12.49,1.03,36.0,19.49,6.54,2.24,21.51,0.51 +2020-06-26 12:00:00,51.7,140.9,19.89,31.16,11.65,0.98,27.71,19.03,8.48,2.08,19.51,0.42 +2020-06-26 13:00:00,29.63,115.75,17.81,36.56,10.94,0.9,29.11,19.61,9.32,2.11,18.99,0.37 +2020-06-26 14:00:00,30.89,97.67,16.84,42.69,11.04,0.85,35.44,17.4,7.79,2.16,17.72,0.35 +2020-06-26 15:00:00,31.61,89.9,15.46,38.1,11.0,0.73,37.14,16.16,7.47,1.68,17.57,0.25 +2020-06-26 16:00:00,27.23,86.36,14.91,31.56,10.87,0.67,37.13,17.16,8.65,1.31,15.68,0.13 +2020-06-26 17:00:00,28.61,90.52,16.0,29.92,10.42,0.8,38.06,17.33,8.2,1.39,14.62,0.12 +2020-06-26 18:00:00,27.69,99.25,16.56,29.7,10.51,0.96,33.84,16.73,7.53,1.74,18.86,0.19 +2020-06-26 19:00:00,30.88,110.45,19.26,31.33,10.05,1.06,29.16,18.04,7.91,1.84,20.66,0.28 +2020-06-26 20:00:00,36.25,119.59,21.86,30.68,10.94,1.08,23.21,19.54,7.71,2.13,18.64,0.31 +2020-06-26 21:00:00,33.31,123.55,25.09,33.26,11.25,0.94,19.05,22.51,8.83,2.25,23.47,0.53 +2020-06-26 22:00:00,37.78,129.04,24.86,31.58,10.76,0.94,17.53,23.35,9.61,2.26,24.04,0.81 +2020-06-26 23:00:00,38.63,122.5,22.34,31.35,11.0,0.89,17.17,22.4,9.73,2.01,23.93,0.83 +2020-06-27 00:00:00,39.76,117.3,20.47,29.88,11.56,0.91,18.25,21.99,10.17,1.75,20.69,0.6 +2020-06-27 01:00:00,36.78,109.03,19.45,29.16,10.76,0.89,16.32,19.31,8.22,1.55,16.33,0.45 +2020-06-27 02:00:00,33.15,97.62,18.41,32.61,11.0,0.78,13.8,17.27,7.16,1.5,16.44,0.27 +2020-06-27 03:00:00,34.93,91.67,18.88,34.28,10.94,0.6,13.65,17.76,7.71,1.43,18.29,0.26 +2020-06-27 04:00:00,33.8,85.01,19.5,31.08,10.95,0.68,13.66,18.22,7.98,1.45,19.91,0.24 +2020-06-27 05:00:00,30.19,74.68,20.81,29.83,11.19,0.75,12.67,19.82,9.17,1.43,19.79,0.2 +2020-06-27 06:00:00,30.51,72.58,21.96,28.27,10.78,0.77,12.39,24.31,13.21,1.36,19.58,0.27 +2020-06-27 07:00:00,30.48,79.3,22.35,27.53,9.87,0.9,11.66,29.36,18.22,1.42,21.36,0.41 +2020-06-27 08:00:00,32.01,88.88,22.14,27.09,9.93,0.96,13.35,29.36,17.5,1.38,20.0,0.53 +2020-06-27 09:00:00,32.58,92.28,19.46,26.53,10.12,0.81,16.95,24.2,13.58,1.34,17.46,0.4 +2020-06-27 10:00:00,29.94,92.78,16.81,26.58,10.88,0.78,18.72,20.26,11.29,1.36,14.12,0.31 +2020-06-27 11:00:00,29.29,111.01,16.21,28.62,10.93,0.77,21.23,18.73,10.32,1.53,15.13,0.32 +2020-06-27 12:00:00,35.52,142.4,15.33,28.89,10.8,0.76,25.47,16.92,8.44,1.56,15.47,0.2 +2020-06-27 13:00:00,36.55,176.65,17.11,28.81,9.98,0.75,26.27,17.69,8.08,1.47,16.13,0.21 +2020-06-27 14:00:00,37.87,188.73,16.0,30.15,9.39,0.77,28.54,19.52,10.21,1.36,14.47,0.12 +2020-06-27 15:00:00,42.33,199.22,16.84,39.6,9.09,0.87,29.33,21.69,11.44,1.19,14.17,0.1 +2020-06-27 16:00:00,44.14,210.42,15.66,39.01,9.23,0.76,31.05,18.39,9.36,1.21,14.75,0.12 +2020-06-27 17:00:00,46.5,259.62,17.37,36.19,9.28,0.75,29.13,19.93,10.4,1.36,15.42,0.11 +2020-06-27 18:00:00,47.03,271.18,20.91,34.77,9.19,0.77,24.96,21.86,10.84,1.58,19.0,0.3 +2020-06-27 19:00:00,48.13,241.94,26.62,33.27,9.75,0.96,21.51,25.44,10.99,2.2,23.21,0.5 +2020-06-27 20:00:00,53.59,247.38,31.11,32.58,9.63,1.13,16.55,27.64,10.77,2.37,26.21,0.82 +2020-06-27 21:00:00,55.93,244.48,34.31,34.12,10.7,1.24,13.24,29.78,11.69,2.81,31.65,1.27 +2020-06-27 22:00:00,56.38,221.57,35.65,34.0,11.41,1.29,12.41,31.1,12.44,2.95,36.55,1.13 +2020-06-27 23:00:00,57.92,226.93,31.7,31.54,11.8,1.22,12.01,28.61,11.83,2.9,33.65,1.26 +2020-06-28 00:00:00,60.52,248.08,30.39,30.32,11.91,1.12,11.58,28.36,12.58,2.15,33.79,0.88 +2020-06-28 01:00:00,66.11,275.22,28.32,27.46,11.73,0.99,11.17,27.53,12.76,1.88,33.63,0.58 +2020-06-28 02:00:00,67.87,280.48,26.36,30.14,12.1,1.1,11.61,25.66,12.29,1.69,33.29,0.6 +2020-06-28 03:00:00,63.25,276.97,24.56,32.09,11.93,1.08,12.13,26.93,14.49,1.7,33.21,1.4 +2020-06-28 04:00:00,61.38,262.99,23.84,29.9,11.72,1.01,11.16,26.08,14.11,2.24,31.33,6.69 +2020-06-28 05:00:00,59.88,246.81,23.94,29.07,11.25,0.9,10.35,28.64,17.15,2.39,31.35,8.69 +2020-06-28 06:00:00,58.87,252.25,24.19,27.98,12.04,0.92,9.88,33.16,22.22,2.29,34.06,5.58 +2020-06-28 07:00:00,56.45,243.6,23.05,27.58,12.42,1.03,10.61,31.25,20.07,2.34,39.31,4.12 +2020-06-28 08:00:00,45.56,184.75,21.74,27.12,11.85,0.72,12.23,28.05,17.6,2.18,36.1,2.71 +2020-06-28 09:00:00,34.15,129.26,15.49,27.0,10.56,0.77,14.23,20.68,12.88,1.71,23.41,1.47 +2020-06-28 10:00:00,33.33,157.34,14.47,27.51,9.75,0.71,20.42,19.08,11.4,1.35,17.07,0.97 +2020-06-28 11:00:00,37.82,225.79,13.71,28.23,9.49,0.66,21.12,16.5,8.97,1.24,14.66,0.55 +2020-06-28 12:00:00,43.16,258.13,13.15,28.39,9.26,0.73,23.09,15.05,7.93,1.13,13.58,0.36 +2020-06-28 13:00:00,39.77,246.17,13.99,29.71,9.61,0.7,25.91,15.28,7.78,1.05,14.58,0.28 +2020-06-28 14:00:00,43.55,289.43,14.09,30.38,9.87,0.78,29.35,14.94,7.39,0.99,15.8,0.14 +2020-06-28 15:00:00,55.29,387.92,13.71,31.33,9.19,0.75,28.6,15.59,8.19,1.0,17.11,0.08 +2020-06-28 16:00:00,62.08,449.02,13.78,30.98,9.62,0.92,28.57,15.4,8.03,0.92,18.39,0.04 +2020-06-28 17:00:00,65.75,434.96,14.88,30.41,9.34,0.8,27.61,16.49,8.65,0.95,16.98,0.03 +2020-06-28 18:00:00,69.52,438.01,17.04,29.63,8.94,0.83,28.12,18.07,8.88,1.01,16.71,0.0 +2020-06-28 19:00:00,73.47,449.11,21.25,29.51,9.48,0.86,24.96,22.31,11.09,1.22,20.7,0.12 +2020-06-28 20:00:00,79.4,461.74,27.42,30.26,10.1,1.14,19.15,27.18,12.7,1.71,29.72,0.31 +2020-06-28 21:00:00,83.37,428.58,32.78,30.2,11.1,1.2,14.79,31.91,14.16,2.47,20.6,0.89 +2020-06-28 22:00:00,84.6,395.37,33.7,28.98,11.41,1.41,14.0,33.97,15.77,2.63,25.92,1.88 +2020-06-28 23:00:00,83.39,385.53,32.66,28.29,12.05,1.44,12.55,34.65,17.07,2.79,31.82,3.32 +2020-06-29 00:00:00,77.81,336.5,34.76,27.56,13.37,1.58,11.63,38.37,20.23,2.7,32.02,3.72 +2020-06-29 01:00:00,72.85,301.97,29.17,27.1,13.82,1.2,14.5,37.93,22.91,2.96,27.61,3.47 +2020-06-29 02:00:00,68.31,271.78,27.57,28.51,16.26,1.04,13.88,34.63,20.34,2.54,27.35,3.04 +2020-06-29 03:00:00,65.12,246.45,24.48,31.46,13.87,0.93,14.05,30.99,17.95,2.8,36.35,3.09 +2020-06-29 04:00:00,61.4,222.12,21.89,28.44,13.21,0.83,17.31,24.21,12.5,3.02,27.55,2.71 +2020-06-29 05:00:00,49.02,182.63,19.84,26.93,15.59,0.73,17.7,20.17,9.66,3.01,23.82,1.89 +2020-06-29 06:00:00,39.19,137.25,19.85,26.96,12.69,0.7,14.47,20.45,9.66,2.95,45.61,0.83 +2020-06-29 07:00:00,36.25,121.41,23.57,26.41,12.63,0.79,13.52,28.06,16.02,2.36,33.62,0.5 +2020-06-29 08:00:00,33.94,123.91,21.74,25.58,11.82,0.75,13.85,24.78,13.55,2.2,21.03,0.46 +2020-06-29 09:00:00,27.85,131.47,22.28,25.48,11.24,0.81,18.17,23.08,11.4,2.27,15.9,0.42 +2020-06-29 10:00:00,25.67,114.33,18.32,24.36,10.49,0.68,18.48,20.16,10.34,1.77,14.09,0.36 +2020-06-29 11:00:00,29.92,134.75,15.8,25.67,10.09,0.8,22.99,17.76,9.22,1.24,19.28,0.3 +2020-06-29 12:00:00,37.6,180.86,15.58,27.23,9.87,0.68,26.78,16.42,7.97,1.35,28.39,0.26 +2020-06-29 13:00:00,45.87,228.48,14.53,27.72,10.38,0.72,36.34,14.36,6.53,1.32,12.65,0.2 +2020-06-29 14:00:00,51.24,236.34,14.86,29.06,10.46,0.76,42.53,13.8,6.11,1.8,20.2,0.24 +2020-06-29 15:00:00,54.41,206.72,15.48,30.6,11.4,0.93,50.6,14.15,5.84,1.77,13.68,0.36 +2020-06-29 16:00:00,53.49,189.37,16.24,31.72,10.54,0.97,51.54,14.57,5.77,1.85,13.68,0.44 +2020-06-29 17:00:00,52.68,183.98,16.83,31.51,9.77,1.02,48.65,14.89,5.71,1.87,13.34,0.4 +2020-06-29 18:00:00,51.48,219.76,14.82,29.89,9.53,0.92,47.82,14.23,6.08,1.94,13.48,0.46 +2020-06-29 19:00:00,46.14,344.01,18.26,29.93,9.23,0.75,41.63,16.39,6.48,1.67,11.75,0.48 +2020-06-29 20:00:00,22.09,102.72,25.71,28.03,9.29,0.95,31.88,20.4,6.79,1.65,12.25,0.49 +2020-06-29 21:00:00,20.77,61.29,33.49,26.66,11.38,0.96,21.32,25.86,7.96,1.84,34.03,0.88 +2020-06-29 22:00:00,24.39,67.29,28.64,27.67,10.73,0.9,24.21,21.87,6.58,2.5,40.64,1.1 +2020-06-29 23:00:00,29.19,73.51,24.04,26.88,10.23,0.76,24.89,19.05,6.42,1.67,32.93,1.1 +2020-06-30 00:00:00,25.31,66.43,22.91,25.66,10.39,0.78,23.59,18.12,5.85,1.47,27.12,0.81 +2020-06-30 01:00:00,28.71,72.02,20.81,25.68,10.91,0.75,25.11,16.58,4.99,1.44,30.2,1.0 +2020-06-30 02:00:00,35.05,83.73,17.31,27.67,11.49,0.76,24.9,14.35,4.83,1.51,16.37,0.89 +2020-06-30 03:00:00,36.75,81.38,15.01,28.04,12.24,0.84,25.74,13.08,4.93,1.48,15.32,0.65 +2020-06-30 04:00:00,32.78,68.48,15.7,26.14,11.74,0.73,24.79,13.3,4.88,1.81,26.51,0.51 +2020-06-30 05:00:00,31.29,60.17,15.46,26.2,11.26,0.73,24.81,13.25,4.94,1.65,19.53,0.4 +2020-06-30 06:00:00,32.23,61.3,14.7,26.58,10.39,0.76,20.03,13.37,5.69,1.66,16.04,0.27 +2020-06-30 07:00:00,34.04,62.02,14.46,26.68,9.33,0.79,19.3,13.92,6.65,1.56,14.06,0.26 +2020-06-30 08:00:00,34.42,62.37,15.44,26.61,9.28,0.84,19.51,14.36,6.49,1.55,13.06,0.16 +2020-06-30 09:00:00,36.27,69.32,15.64,26.71,8.78,0.88,21.48,14.86,6.68,1.52,12.65,0.24 +2020-06-30 10:00:00,38.4,75.29,16.46,27.06,8.91,0.87,26.62,15.45,6.75,1.62,13.46,0.18 +2020-06-30 11:00:00,38.71,82.36,16.64,27.73,8.93,0.89,34.32,15.15,6.42,1.82,14.49,0.31 +2020-06-30 12:00:00,40.51,87.52,16.69,28.58,9.76,0.82,45.68,15.45,5.85,1.52,13.59,0.34 +2020-06-30 13:00:00,41.66,92.36,17.53,29.25,10.36,0.82,52.85,16.42,6.68,1.41,9.72,0.3 +2020-06-30 14:00:00,43.81,99.58,17.85,30.13,10.57,0.8,59.7,16.14,6.45,1.49,10.3,0.16 +2020-06-30 15:00:00,47.39,107.1,17.49,30.54,10.94,0.82,60.19,14.7,5.69,1.46,10.94,0.16 +2020-06-30 16:00:00,50.68,113.47,16.59,31.31,11.29,0.85,62.55,14.22,5.78,1.46,12.44,0.12 +2020-06-30 17:00:00,48.06,115.63,17.02,31.36,11.22,0.85,60.22,15.18,6.14,1.51,12.6,0.16 +2020-06-30 18:00:00,47.04,120.11,19.53,31.08,11.09,0.89,56.14,16.15,6.25,1.62,15.26,0.19 +2020-06-30 19:00:00,44.05,120.06,21.16,31.21,10.92,0.9,50.22,17.17,6.58,1.58,20.39,0.54 +2020-06-30 20:00:00,43.19,123.26,22.28,29.92,10.64,0.92,44.13,17.66,6.33,1.63,17.83,0.86 +2020-06-30 21:00:00,45.3,125.22,22.91,29.95,10.59,1.04,39.62,17.96,6.34,1.72,18.06,1.16 +2020-06-30 22:00:00,49.04,129.39,20.95,30.01,10.2,1.0,38.95,16.8,6.29,1.66,16.17,1.18 +2020-06-30 23:00:00,50.51,128.86,20.4,29.4,10.98,0.94,34.53,16.83,6.19,1.6,16.79,0.85 \ No newline at end of file diff --git a/content/mooreslaw-tutorial.md b/content/mooreslaw-tutorial.md index 2478866f..42c0de15 100644 --- a/content/mooreslaw-tutorial.md +++ b/content/mooreslaw-tutorial.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.6.0 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -21,8 +21,7 @@ _The number of transistors reported per a given chip plotted on a log scale in t In 1965, engineer Gordon Moore [predicted](https://en.wikipedia.org/wiki/Moore%27s_law) that transistors on a chip would double every two years in the coming decade -[[1](https://en.wikipedia.org/wiki/Moore%27s_law), -[2](https://newsroom.intel.com/wp-content/uploads/sites/11/2018/05/moores-law-electronics.pdf)]. +[[1](https://en.wikipedia.org/wiki/Moore%27s_law)]. You'll compare Moore's prediction against actual transistor counts in the 53 years following his prediction. You will determine the best-fit constants to describe the exponential growth of transistors on semiconductors compared to Moore's Law. @@ -34,7 +33,7 @@ the 53 years following his prediction. You will determine the best-fit constants - Perform linear regression and predict exponential growth using ordinary least squares - You'll compare exponential growth constants between models - Share your analysis in a file: - - as NumPy zipped files `*.npz` + - as NumPy zipped files `*.npz` - as a `*.csv` file - Assess the amazing progress semiconductor manufacturers have made in the last five decades @@ -44,19 +43,17 @@ the 53 years following his prediction. You will determine the best-fit constants * NumPy * [Matplotlib](https://matplotlib.org/) -* [statsmodels](https://www.statsmodels.org) ordinary linear regression - + imported with the following commands -```{code-cell} ipython3 +```{code-cell} import matplotlib.pyplot as plt import numpy as np -import statsmodels.api as sm ``` -**2.** Since this is an exponential growth law you need a little background in doing math with [natural logs](https://en.wikipedia.org/wiki/Natural_logarithm) and [exponentials](https://en.wikipedia.org/wiki/Exponential_function). +**2.** Since this is an exponential growth law you need a little background in doing math with [natural logs](https://en.wikipedia.org/wiki/Natural_logarithm) and [exponentials](https://en.wikipedia.org/wiki/Exponential_function). -You'll use these NumPy, Matplotlib, and statsmodels functions: +You'll use these NumPy and Matplotlib functions: * [`np.loadtxt`](https://numpy.org/doc/stable/reference/generated/numpy.loadtxt.html): this function loads text into a NumPy array * [`np.log`](https://numpy.org/doc/stable/reference/generated/numpy.log.html): this function takes the natural log of all elements in a NumPy array @@ -64,7 +61,6 @@ You'll use these NumPy, Matplotlib, and statsmodels functions: * [`lambda`](https://docs.python.org/3/library/ast.html?highlight=lambda#ast.Lambda): this is a minimal function definition for creating a function model * [`plt.semilogy`](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.semilogy.html): this function will plot x-y data onto a figure with a linear x-axis and $\log_{10}$ y-axis [`plt.plot`](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.plot.html): this function will plot x-y data on linear axes -* [`sm.OLS`](https://www.statsmodels.org/stable/generated/statsmodels.regression.linear_model.OLS.html): find fitting parameters and standard errors using the statsmodels ordinary least squares model * slicing arrays: view parts of the data loaded into the workspace, slice the arrays e.g. `x[:10]` for the first 10 values in the array, `x` * boolean array indexing: to view parts of the data that match a given condition use boolean operations to index an array * [`np.block`](https://numpy.org/doc/stable/reference/generated/numpy.block.html): to combine arrays into 2D arrays @@ -78,17 +74,17 @@ You'll use these NumPy, Matplotlib, and statsmodels functions: ## Building Moore's law as an exponential function Your empirical model assumes that the number of transistors per -semiconductor follows an exponential growth, +semiconductor follows an exponential growth, $\log(\text{transistor_count})= f(\text{year}) = A\cdot \text{year}+B,$ where $A$ and $B$ are fitting constants. You use semiconductor -manufacturers' data to find the fitting constants. +manufacturers' data to find the fitting constants. -You determine these constants for Moore's law by specifying the -rate for added transistors, 2, and giving an initial number of transistors for a given year. +You determine these constants for Moore's law by specifying the +rate for added transistors, 2, and giving an initial number of transistors for a given year. -You state Moore's law in an exponential form as follows, +You state Moore's law in an exponential form as follows, $\text{transistor_count}= e^{A_M\cdot \text{year} +B_M}.$ @@ -112,7 +108,7 @@ Since the function represents Moore's law, define it as a Python function using [`lambda`](https://docs.python.org/3/library/ast.html?highlight=lambda#ast.Lambda) -```{code-cell} ipython3 +```{code-cell} A_M = np.log(2) / 2 B_M = np.log(2250) - A_M * 1971 Moores_law = lambda year: np.exp(B_M) * np.exp(A_M * year) @@ -122,7 +118,7 @@ In 1971, there were 2250 transistors on the Intel 4004 chip. Use `Moores_law` to check the number of semiconductors Gordon Moore would expect in 1973. -```{code-cell} ipython3 +```{code-cell} ML_1971 = Moores_law(1971) ML_1973 = Moores_law(1973) print("In 1973, G. Moore expects {:.0f} transistors on Intels chips".format(ML_1973)) @@ -133,20 +129,20 @@ print("This is x{:.2f} more transistors than 1971".format(ML_1973 / ML_1971)) Now, make a prediction based upon the historical data for semiconductors per chip. The [Transistor Count -\[4\]](https://en.wikipedia.org/wiki/Transistor_count#Microprocessors) +\[3\]](https://en.wikipedia.org/wiki/Transistor_count#Microprocessors) each year is in the `transistor_data.csv` file. Before loading a \*.csv file into a NumPy array, its a good idea to inspect the structure of the file first. Then, locate the columns of interest and save them to a variable. Save two columns of the file to the array, `data`. -Here, print out the first 10 rows of `transistor_data.csv`. The columns are +Here, print out the first 10 rows of `transistor_data.csv`. The columns are |Processor|MOS transistor count|Date of Introduction|Designer|MOSprocess|Area| |---|---|---|---|---|---| |Intel 4004 (4-bit 16-pin)|2250|1971|Intel|"10,000 nm"|12 mm²| |...|...|...|...|...|...| -```{code-cell} ipython3 +```{code-cell} ! head transistor_data.csv ``` @@ -156,19 +152,19 @@ __MOS transistor count__ and __Date of Introduction__, respectively. Next, you load these two columns into a NumPy array using [`np.loadtxt`](https://numpy.org/doc/stable/reference/generated/numpy.loadtxt.html). -The extra options below will put the data in the desired format: +The extra options below will put the data in the desired format: * `delimiter = ','`: specify delimeter as a comma ',' (this is the default behavior) * `usecols = [1,2]`: import the second and third columns from the csv * `skiprows = 1`: do not use the first row, because its a header row -```{code-cell} ipython3 +```{code-cell} data = np.loadtxt("transistor_data.csv", delimiter=",", usecols=[1, 2], skiprows=1) ``` You loaded the entire history of semiconducting into a NumPy array named `data`. The first column is the __MOS transistor count__ and the second -column is the __Date of Introduction__ in a four-digit year. +column is the __Date of Introduction__ in a four-digit year. Next, make the data easier to read and manage by assigning the two columns to variables, `year` and `transistor_count`. Print out the first @@ -176,7 +172,7 @@ columns to variables, `year` and `transistor_count`. Print out the first `[:10]`. Print these values out to check that you have the saved the data to the correct variables. -```{code-cell} ipython3 +```{code-cell} year = data[:, 1] # grab the second column and assign transistor_count = data[:, 0] # grab the first column and assign @@ -186,16 +182,16 @@ print("trans. cnt:\t", transistor_count[:10]) You are creating a function that predicts the transistor count given a year. You have an _independent variable_, `year`, and a _dependent -variable_, `transistor_count`. Transform the independent variable to -log-scale, +variable_, `transistor_count`. Transform the dependent variable to +log-scale, $y_i = \log($ `transistor_count[i]` $),$ -resulting in a linear equation, +resulting in a linear equation, $y_i = A\cdot \text{year} +B$. -```{code-cell} ipython3 +```{code-cell} yi = np.log(transistor_count) ``` @@ -215,59 +211,31 @@ where $\mathbf{y}$ are the observations of the log of the number of transistors in a 1D array and $\mathbf{Z}=[\text{year}_i^1,~\text{year}_i^0]$ are the polynomial terms for $\text{year}_i$ in the first and second columns. By creating this set of regressors in the $\mathbf{Z}-$matrix you set -up an ordinary least squares statistical model. Some clever -NumPy array features will build $\mathbf{Z}$ +up an ordinary least squares statistical model. -1. `year[:,np.newaxis]` : takes the 1D array with shape `(179,)` and turns it into a 2D column vector with shape `(179,1)` -2. `**[1, 0]` : stacks two columns, in the first column is `year**1` and the second column is `year**0 == 1` +`Z` is a linear model with two parameters, i.e. a polynomial with degree `1`. +Therefore we can represent the model with `numpy.polynomial.Polynomial` and +use the fitting functionality to determine the model parameters: -```{code-cell} ipython3 -Z = year[:, np.newaxis] ** [1, 0] +```{code-cell} +model = np.polynomial.Polynomial.fit(year, yi, deg=1) ``` -Now that you have the created a matrix of regressors, $\mathbf{Z},$ and -the observations are in vector, $\mathbf{y},$ you can use these -variables to build the an ordinary least squares model with -[`sm.OLS`](https://www.statsmodels.org/stable/generated/statsmodels.regression.linear_model.OLS.html). - -```{code-cell} ipython3 -model = sm.OLS(yi, Z) -``` +By default, `Polynomial.fit` performs the fit in the domain determined by the +independent variable (`year` in this case). +The coefficients for the unscaled and unshifted model can be recovered with the +`convert` method: -Now, you can view the fitting constants, $A$ and $B$, and their standard -errors. Run the -[`fit`](https://www.statsmodels.org/stable/generated/statsmodels.regression.linear_model.OLS.html) and print the -[`summary`](https://www.statsmodels.org/stable/generated/statsmodels.regression.linear_model.RegressionResults.summary.html) to view results as such, -```{code-cell} ipython3 -results = model.fit() -print(results.summary()) +```{code-cell} +model = model.convert() +model ``` -The __OLS Regression Results__ summary gives a lot of information about -the regressors, $\mathbf{Z},$ and observations, $\mathbf{y}.$ The most -important outputs for your current analysis are +The individual parameters $A$ and $B$ are the coefficients of our linear model: -``` -================================= - coef std err ---------------------------------- -x1 0.3416 0.006 -const -666.3264 11.890 -================================= -``` -where `x1` is slope, $A=0.3416$, `const` is the intercept, -$B=-666.364$, and `std error` gives the precision of constants -$A=0.342\pm 0.006~\dfrac{\log(\text{transistors}/\text{chip})}{\text{years}}$ and $B=-666\pm -12~\log(\text{transistors}/\text{chip}),$ where the units are in -$\log(\text{transistors}/\text{chip})$. You created an exponential growth model. -To get the constants, save them to an array `AB` with -`results.params` and assign $A$ and $B$ to `x1` and `constant`. - -```{code-cell} ipython3 -AB = results.params -A = AB[0] -B = AB[1] +```{code-cell} +B, A = model ``` Did manufacturers double the transistor count every two years? You have @@ -277,27 +245,17 @@ $\dfrac{\text{transistor_count}(\text{year} +2)}{\text{transistor_count}(\text{y \dfrac{e^{B}e^{A( \text{year} + 2)}}{e^{B}e^{A \text{year}}} = e^{2A}$ where increase in number of transistors is $xFactor,$ number of years is -2, and $A$ is the best fit slope on the semilog function. The error in -your -prediction, $\Delta(xFactor),$ comes from the precision of your constant -$A,$ which you calculated as the standard error $\Delta A= 0.006$. - -$\Delta (xFactor) = \frac{\partial}{\partial A}(e^{2A})\Delta A = 2Ae^{2A}\Delta A$ +2, and $A$ is the best fit slope on the semilog function. -```{code-cell} ipython3 -print("Rate of semiconductors added on a chip every 2 years:") -print( - "\tx{:.2f} +/- {:.2f} semiconductors per chip".format( - np.exp((A) * 2), 2 * A * np.exp(2 * A) * 0.006 - ) -) +```{code-cell} +print(f"Rate of semiconductors added on a chip every 2 years: {np.exp(2 * A):.2f}") ``` Based upon your least-squares regression model, the number of -semiconductors per chip increased by a factor of $1.98\pm 0.01$ every two +semiconductors per chip increased by a factor of $1.98$ every two years. You have a model that predicts the number of semiconductors each year. Now compare your model to the actual manufacturing reports. Plot -the linear regression results and all of the transistor counts. +the linear regression results and all of the transistor counts. Here, use [`plt.semilogy`](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.semilogy.html) @@ -314,28 +272,28 @@ $\log(\text{transistor_count}) = A\cdot \text{year} + B,$ your variables, `transistor_count`, `year`, and `yi` all have the same dimensions, `(179,)`. NumPy arrays need the same dimensions to make a -plot. The predicted number of transistors is now +plot. The predicted number of transistors is now $\text{transistor_count}_{\text{predicted}} = e^Be^{A\cdot \text{year}}$. +++ -In the next plot, use the +In the next plot, use the [`fivethirtyeight`](https://matplotlib.org/3.1.1/gallery/style_sheets/fivethirtyeight.html) -style sheet. +style sheet. The style sheet replicates https://fivethirtyeight.com elements. Change the matplotlib style with [`plt.style.use`](https://matplotlib.org/3.3.2/api/style_api.html#matplotlib.style.use). -```{code-cell} ipython3 +```{code-cell} transistor_count_predicted = np.exp(B) * np.exp(A * year) transistor_Moores_law = Moores_law(year) plt.style.use("fivethirtyeight") -plt.semilogy(year, transistor_count, "s", label = "MOS transistor count") -plt.semilogy(year, transistor_count_predicted, label = "linear regression") +plt.semilogy(year, transistor_count, "s", label="MOS transistor count") +plt.semilogy(year, transistor_count_predicted, label="linear regression") -plt.plot(year, transistor_Moores_law, label = "Moore's Law") +plt.plot(year, transistor_Moores_law, label="Moore's Law") plt.title( "MOS transistor count per microprocessor\n" + "every two years \n" @@ -353,7 +311,7 @@ per semiconductors each year. In 2015, semiconductor manufacturers claimed they could not keep up with Moore's law anymore. Your analysis shows that since 1971, the average increase in transistor count was x1.98 every 2 years, but Gordon Moore predicted it would be x2 -every 2 years. That is an amazing prediction. +every 2 years. That is an amazing prediction. Consider the year 2017. Compare the data to your linear regression model and Gordon Moore's prediction. First, get the @@ -371,14 +329,14 @@ A great way to compare these measurements is to compare your prediction and Moore's prediction to the average transistor count and look at the range of reported values for that year. Use the [`plt.plot`](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.plot.html) -option, +option, [`alpha=0.2`](https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.artist.Artist.set_alpha.html), to increase the transparency of the data. The more opaque the points appear, the more reported values lie on that measurement. The green $+$ is the average reported transistor count for 2017. Plot your predictions for $\pm\frac{1}{2}~years. -```{code-cell} ipython3 +```{code-cell} transistor_count2017 = transistor_count[year == 2017] print( transistor_count2017.max(), transistor_count2017.min(), transistor_count2017.mean() @@ -405,9 +363,9 @@ plt.legend() The result is that your model is close to the mean, but Gordon Moore's prediction is closer to the maximum number of transistors per microprocessor produced in 2017. Even though semiconductor manufacturers -thought that the growth would slow, once in 1975 and now again +thought that the growth would slow, once in 1975 and now again approaching 2025, manufacturers are still producing semiconductors every 2 years that -nearly double the number of transistors. +nearly double the number of transistors. The linear regression model is much better at predicting the average than extreme values because it satisfies the condition to @@ -423,7 +381,7 @@ prediction. You started this process by importing a csv file into a NumPy array using `np.loadtxt`, to save your model use two approaches 1. [`np.savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html): save NumPy arrays for other Python sessions -2. [`np.savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html): save a csv file with the original data and your predicted data +2. [`np.savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html): save a csv file with the original data and your predicted data ### Zipping the arrays into a file Using `np.savez`, you can save thousands of arrays and give them names. The @@ -433,7 +391,7 @@ transistor count, predicted transistor count, Gordon Moore's predicted count, and fitting constants. Add one more variable that other users can use to understand the model, `notes`. -```{code-cell} ipython3 +```{code-cell} notes = "the arrays in this file are the result of a linear regression model\n" notes += "the arrays include\nyear: year of manufacture\n" notes += "transistor_count: number of transistors reported by manufacturers in a given year\n" @@ -447,7 +405,7 @@ notes += "regression_csts: linear regression constants A and B for log(transisto print(notes) ``` -```{code-cell} ipython3 +```{code-cell} np.savez( "mooreslaw_regression.npz", notes=notes, @@ -455,19 +413,19 @@ np.savez( transistor_count=transistor_count, transistor_count_predicted=transistor_count_predicted, transistor_Moores_law=transistor_Moores_law, - regression_csts=AB, + regression_csts=(A, B), ) ``` -```{code-cell} ipython3 +```{code-cell} results = np.load("mooreslaw_regression.npz") ``` -```{code-cell} ipython3 +```{code-cell} print(results["regression_csts"][1]) ``` -```{code-cell} ipython3 +```{code-cell} ! ls ``` @@ -476,23 +434,23 @@ different shapes and types. Here, you saved 4 arrays that are double precision floating point numbers shape = `(179,)`, one array that was text, and one array of double precision floating point numbers shape = `(2,).` This is the preferred method for saving NumPy arrays for use in -another analysis. +another analysis. ### Creating your own comma separated value file If you want to share data and view the results in a table, then you have to create a text file. Save the data using `np.savetxt`. This function is more limited than `np.savez`. Delimited files, like csv's, -need 2D arrays. +need 2D arrays. Prepare the data for export by creating a new 2D array whose columns -contain the data of interest. +contain the data of interest. Use the `header` option to describe the data and the columns of the file. Define another variable that contains file information as `head`. -```{code-cell} ipython3 +```{code-cell} head = "the columns in this file are the result of a linear regression model\n" head += "the columns include\nyear: year of manufacture\n" head += "transistor_count: number of transistors reported by manufacturers in a given year\n" @@ -516,16 +474,16 @@ not fit the `(179,)` shape. The function appends arrays together to create a new, larger array. Arrange the 1D vectors as columns using [`np.newaxis`](https://numpy.org/doc/stable/reference/constants.html) -e.g. +e.g. ```python >>> year.shape (179,) >>> year[:,np.newaxis].shape -(179,1) +(179,1) ``` -```{code-cell} ipython3 +```{code-cell} output = np.block( [ year[:, np.newaxis], @@ -536,18 +494,18 @@ output = np.block( ) ``` -Creating the `mooreslaw_regression.csv` with `np.savetxt`, use three -options to create the desired file format: +Creating the `mooreslaw_regression.csv` with `np.savetxt`, use three +options to create the desired file format: * `X = output` : use `output` block to write the data into the file * `delimiter = ','` : use commas to separate columns in the file * `header = head` : use the header `head` defined above -```{code-cell} ipython3 +```{code-cell} np.savetxt("mooreslaw_regression.csv", X=output, delimiter=",", header=head) ``` -```{code-cell} ipython3 +```{code-cell} ! head mooreslaw_regression.csv ``` @@ -560,8 +518,8 @@ every two years. Gordon Moore predicted the number of transistors would double every two years from 1965 through 1975, but the average growth has maintained a consistent increase of $\times 1.98 \pm 0.01$ every two years from 1971 through 2019. In 2015, Moore revised his prediction to -say Moore's law should hold until 2025. -[[3](https://spectrum.ieee.org/computing/hardware/gordon-moore-the-man-whose-name-means-progress)]. +say Moore's law should hold until 2025. +[[2](https://spectrum.ieee.org/computing/hardware/gordon-moore-the-man-whose-name-means-progress)]. You can share these results as a zipped NumPy array file, `mooreslaw_regression.npz`, or as another csv, `mooreslaw_regression.csv`. The amazing progress in semiconductor @@ -574,6 +532,5 @@ has been over the last half-century. ## References 1. ["Moore's Law." Wikipedia article. Accessed Oct. 1, 2020.](https://en.wikipedia.org/wiki/Moore%27s_law) -2. [Moore, Gordon E. (1965-04-19). "Cramming more components onto integrated circuits". intel.com. Electronics Magazine. Retrieved April 1, 2020.](https://newsroom.intel.com/wp-content/uploads/sites/11/2018/05/moores-law-electronics.pdf) -3. [Courtland, Rachel. "Gordon Moore: The Man Whose Name Means Progress." IEEE Spectrum. 30 Mar. 2015.](https://spectrum.ieee.org/computing/hardware/gordon-moore-the-man-whose-name-means-progress). -4. ["Transistor Count." Wikipedia article. Accessed Oct. 1, 2020.](https://en.wikipedia.org/wiki/Transistor_count#Microprocessors) +2. [Courtland, Rachel. "Gordon Moore: The Man Whose Name Means Progress." IEEE Spectrum. 30 Mar. 2015.](https://spectrum.ieee.org/computing/hardware/gordon-moore-the-man-whose-name-means-progress). +3. ["Transistor Count." Wikipedia article. Accessed Oct. 1, 2020.](https://en.wikipedia.org/wiki/Transistor_count#Microprocessors) diff --git a/content/mooreslaw_regression.csv b/content/mooreslaw_regression.csv deleted file mode 100644 index 9773e410..00000000 --- a/content/mooreslaw_regression.csv +++ /dev/null @@ -1,186 +0,0 @@ -# the columns in this file are the result of a linear regression model -# the columns include -# year: year of manufacture -# transistor_count: number of transistors reported by manufacturers in a given year -# transistor_count_predicted: linear regression model = exp(-666.33)*exp(0.34*year) -# transistor_Moores_law: Moores law =exp(-675.38)*exp(0.35*year) -# year:, transistor_count:, transistor_count_predicted:, transistor_Moores_law: -1.971000000000000000e+03,2.250000000000000000e+03,1.130514785642334573e+03,2.249999999999916326e+03 -1.972000000000000000e+03,3.500000000000000000e+03,1.590908400344209667e+03,3.181980515339620069e+03 -1.973000000000000000e+03,2.500000000000000000e+03,2.238793840142230238e+03,4.500000000000097316e+03 -1.974000000000000000e+03,3.000000000000000000e+03,3.150525735846483713e+03,6.363961030678889983e+03 -1.974000000000000000e+03,4.100000000000000000e+03,3.150525735846483713e+03,6.363961030678889983e+03 -1.974000000000000000e+03,6.000000000000000000e+03,3.150525735846483713e+03,6.363961030678889983e+03 -1.974000000000000000e+03,8.000000000000000000e+03,3.150525735846483713e+03,6.363961030678889983e+03 -1.975000000000000000e+03,4.528000000000000000e+03,4.433553565432555843e+03,8.999999999999699867e+03 -1.975000000000000000e+03,4.000000000000000000e+03,4.433553565432555843e+03,8.999999999999699867e+03 -1.975000000000000000e+03,5.000000000000000000e+03,4.433553565432555843e+03,8.999999999999699867e+03 -1.976000000000000000e+03,5.000000000000000000e+03,6.239084795883581137e+03,1.272792206135852757e+04 -1.976000000000000000e+03,8.500000000000000000e+03,6.239084795883581137e+03,1.272792206135852757e+04 -1.976000000000000000e+03,6.500000000000000000e+03,6.239084795883581137e+03,1.272792206135852757e+04 -1.976000000000000000e+03,8.000000000000000000e+03,6.239084795883581137e+03,1.272792206135852757e+04 -1.977000000000000000e+03,7.000000000000000000e+03,8.779904993981474036e+03,1.800000000000045475e+04 -1.978000000000000000e+03,9.000000000000000000e+03,1.235545504273335973e+04,2.545584412271565452e+04 -1.978000000000000000e+03,2.900000000000000000e+04,1.235545504273335973e+04,2.545584412271565452e+04 -1.979000000000000000e+03,1.750000000000000000e+04,1.738712086493533207e+04,3.599999999999893043e+04 -1.979000000000000000e+03,2.900000000000000000e+04,1.738712086493533207e+04,3.599999999999893043e+04 -1.979000000000000000e+03,6.800000000000000000e+04,1.738712086493533207e+04,3.599999999999893043e+04 -1.980000000000000000e+03,5.000000000000000000e+04,2.446789462033362724e+04,5.091168824543429946e+04 -1.981000000000000000e+03,1.150000000000000000e+04,3.443226005054736015e+04,7.200000000000209548e+04 -1.981000000000000000e+03,4.500000000000000000e+04,3.443226005054736015e+04,7.200000000000209548e+04 -1.982000000000000000e+03,5.500000000000000000e+04,4.845453810330142733e+04,1.018233764908629964e+05 -1.982000000000000000e+03,1.340000000000000000e+05,4.845453810330142733e+04,1.018233764908629964e+05 -1.984000000000000000e+03,6.300000000000000000e+04,9.595603950546507258e+04,2.036467529817379254e+05 -1.984000000000000000e+03,1.900000000000000000e+05,9.595603950546507258e+04,2.036467529817379254e+05 -1.985000000000000000e+03,2.750000000000000000e+05,1.350334124345561722e+05,2.880000000000094296e+05 -1.985000000000000000e+03,2.500000000000000000e+04,1.350334124345561722e+05,2.880000000000094296e+05 -1.985000000000000000e+03,1.600000000000000000e+04,1.350334124345561722e+05,2.880000000000094296e+05 -1.986000000000000000e+03,1.100000000000000000e+05,1.900247505805244436e+05,4.072935059634535573e+05 -1.986000000000000000e+03,3.750000000000000000e+05,1.900247505805244436e+05,4.072935059634535573e+05 -1.986000000000000000e+03,2.700000000000000000e+04,1.900247505805244436e+05,4.072935059634535573e+05 -1.986000000000000000e+03,9.100000000000000000e+04,1.900247505805244436e+05,4.072935059634535573e+05 -1.987000000000000000e+03,3.850000000000000000e+05,2.674108961787145236e+05,5.759999999999871943e+05 -1.987000000000000000e+03,7.300000000000000000e+05,2.674108961787145236e+05,5.759999999999871943e+05 -1.987000000000000000e+03,2.730000000000000000e+05,2.674108961787145236e+05,5.759999999999871943e+05 -1.987000000000000000e+03,5.530000000000000000e+05,2.674108961787145236e+05,5.759999999999871943e+05 -1.988000000000000000e+03,1.800000000000000000e+05,3.763119655552068143e+05,8.145870119268621784e+05 -1.988000000000000000e+03,2.500000000000000000e+05,3.763119655552068143e+05,8.145870119268621784e+05 -1.989000000000000000e+03,6.000000000000000000e+05,5.295621735824210336e+05,1.152000000000041910e+06 -1.989000000000000000e+03,1.000000000000000000e+06,5.295621735824210336e+05,1.152000000000041910e+06 -1.989000000000000000e+03,1.180235000000000000e+06,5.295621735824210336e+05,1.152000000000041910e+06 -1.989000000000000000e+03,3.100000000000000000e+05,5.295621735824210336e+05,1.152000000000041910e+06 -1.990000000000000000e+03,1.200000000000000000e+06,7.452223722824908327e+05,1.629174023853820050e+06 -1.991000000000000000e+03,1.350000000000000000e+06,1.048708559362213826e+06,2.303999999999957159e+06 -1.991000000000000000e+03,3.500000000000000000e+04,1.048708559362213826e+06,2.303999999999957159e+06 -1.992000000000000000e+03,6.000000000000000000e+05,1.475787205785434693e+06,3.258348047707461286e+06 -1.992000000000000000e+03,9.000000000000000000e+05,1.475787205785434693e+06,3.258348047707461286e+06 -1.992000000000000000e+03,1.680000000000000000e+06,1.475787205785434693e+06,3.258348047707461286e+06 -1.993000000000000000e+03,2.800000000000000000e+06,2.076790407894190168e+06,4.608000000000185333e+06 -1.993000000000000000e+03,3.100000000000000000e+06,2.076790407894190168e+06,4.608000000000185333e+06 -1.994000000000000000e+03,5.789770000000000000e+05,2.922547628420349676e+06,6.516696095415305346e+06 -1.994000000000000000e+03,7.000000000000000000e+03,2.922547628420349676e+06,6.516696095415305346e+06 -1.994000000000000000e+03,2.500000000000000000e+06,2.922547628420349676e+06,6.516696095415305346e+06 -1.995000000000000000e+03,2.500000000000000000e+06,4.112733094258676749e+06,9.215999999999864027e+06 -1.995000000000000000e+03,5.500000000000000000e+06,4.112733094258676749e+06,9.215999999999864027e+06 -1.996000000000000000e+03,4.300000000000000000e+06,5.787612608986957930e+06,1.303339219082989357e+07 -1.997000000000000000e+03,1.000000000000000000e+07,8.144574166134306230e+06,1.843200000000081211e+07 -1.997000000000000000e+03,7.500000000000000000e+06,8.144574166134306230e+06,1.843200000000081211e+07 -1.997000000000000000e+03,8.800000000000000000e+06,8.144574166134306230e+06,1.843200000000081211e+07 -1.997000000000000000e+03,1.500000000000000000e+04,8.144574166134306230e+06,1.843200000000081211e+07 -1.998000000000000000e+03,7.500000000000000000e+06,1.146139052994999662e+07,2.606678438166131452e+07 -1.999000000000000000e+03,1.110000000000000000e+05,1.612895532663276047e+07,3.686399999999959022e+07 -1.999000000000000000e+03,9.500000000000000000e+06,1.612895532663276047e+07,3.686399999999959022e+07 -1.999000000000000000e+03,1.350000000000000000e+07,1.612895532663276047e+07,3.686399999999959022e+07 -1.999000000000000000e+03,2.740000000000000000e+07,1.612895532663276047e+07,3.686399999999959022e+07 -1.999000000000000000e+03,2.130000000000000000e+07,1.612895532663276047e+07,3.686399999999959022e+07 -1.999000000000000000e+03,2.200000000000000000e+07,1.612895532663276047e+07,3.686399999999959022e+07 -2.000000000000000000e+03,2.100000000000000000e+07,2.269735066166096553e+07,5.213356876331976801e+07 -2.000000000000000000e+03,2.100000000000000000e+07,2.269735066166096553e+07,5.213356876331976801e+07 -2.000000000000000000e+03,4.200000000000000000e+07,2.269735066166096553e+07,5.213356876331976801e+07 -2.001000000000000000e+03,1.910000000000000000e+08,3.194067542661818489e+07,7.372800000000350177e+07 -2.001000000000000000e+03,4.500000000000000000e+07,3.194067542661818489e+07,7.372800000000350177e+07 -2.002000000000000000e+03,5.500000000000000000e+07,4.494827444472821802e+07,1.042671375266456604e+08 -2.002000000000000000e+03,2.200000000000000000e+08,4.494827444472821802e+07,1.042671375266456604e+08 -2.003000000000000000e+03,1.520000000000000000e+08,6.325311999742262065e+07,1.474559999999989271e+08 -2.003000000000000000e+03,5.430000000000000000e+07,6.325311999742262065e+07,1.474559999999989271e+08 -2.003000000000000000e+03,1.059000000000000000e+08,6.325311999742262065e+07,1.474559999999989271e+08 -2.003000000000000000e+03,4.100000000000000000e+08,6.325311999742262065e+07,1.474559999999989271e+08 -2.004000000000000000e+03,1.120000000000000000e+08,8.901247575873515010e+07,2.085342750532798469e+08 -2.004000000000000000e+03,4.000000000000000000e+08,8.901247575873515010e+07,2.085342750532798469e+08 -2.004000000000000000e+03,5.920000000000000000e+08,8.901247575873515010e+07,2.085342750532798469e+08 -2.005000000000000000e+03,1.690000000000000000e+08,1.252621347535467148e+08,2.949120000000151396e+08 -2.005000000000000000e+03,2.280000000000000000e+08,1.252621347535467148e+08,2.949120000000151396e+08 -2.005000000000000000e+03,1.650000000000000000e+08,1.252621347535467148e+08,2.949120000000151396e+08 -2.005000000000000000e+03,2.500000000000000000e+08,1.252621347535467148e+08,2.949120000000151396e+08 -2.006000000000000000e+03,1.840000000000000000e+08,1.762741938056465387e+08,4.170685501065841317e+08 -2.006000000000000000e+03,3.620000000000000000e+08,1.762741938056465387e+08,4.170685501065841317e+08 -2.006000000000000000e+03,2.910000000000000000e+08,1.762741938056465387e+08,4.170685501065841317e+08 -2.006000000000000000e+03,1.700000000000000000e+09,1.762741938056465387e+08,4.170685501065841317e+08 -2.007000000000000000e+03,4.630000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,2.600000000000000000e+07,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,4.110000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,7.890000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,1.690000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,2.500000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.007000000000000000e+03,5.400000000000000000e+08,2.480605289297198653e+08,5.898239999999978542e+08 -2.008000000000000000e+03,2.300000000000000000e+08,3.490813072771022916e+08,8.341371002131224871e+08 -2.008000000000000000e+03,7.310000000000000000e+08,3.490813072771022916e+08,8.341371002131224871e+08 -2.008000000000000000e+03,7.580000000000000000e+08,3.490813072771022916e+08,8.341371002131224871e+08 -2.008000000000000000e+03,4.700000000000000000e+07,3.490813072771022916e+08,8.341371002131224871e+08 -2.008000000000000000e+03,6.000000000000000000e+08,3.490813072771022916e+08,8.341371002131224871e+08 -2.008000000000000000e+03,1.900000000000000000e+09,3.490813072771022916e+08,8.341371002131224871e+08 -2.009000000000000000e+03,9.040000000000000000e+08,4.912420352244562507e+08,1.179648000000065088e+09 -2.009000000000000000e+03,7.600000000000000000e+08,4.912420352244562507e+08,1.179648000000065088e+09 -2.010000000000000000e+03,1.000000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.010000000000000000e+03,1.170000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.010000000000000000e+03,1.200000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.010000000000000000e+03,1.400000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.010000000000000000e+03,2.000000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.010000000000000000e+03,2.300000000000000000e+09,6.912966467720543146e+08,1.668274200426342964e+09 -2.011000000000000000e+03,1.870000000000000000e+09,9.728219891035685539e+08,2.359296000000000477e+09 -2.011000000000000000e+03,1.160000000000000000e+09,9.728219891035685539e+08,2.359296000000000477e+09 -2.011000000000000000e+03,2.270000000000000000e+09,9.728219891035685539e+08,2.359296000000000477e+09 -2.011000000000000000e+03,2.600000000000000000e+09,9.728219891035685539e+08,2.359296000000000477e+09 -2.012000000000000000e+03,4.320000000000000000e+08,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,2.990000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,1.200000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,1.303000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,1.400000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,2.100000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,2.750000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,3.100000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.012000000000000000e+03,5.000000000000000000e+09,1.368996402488514662e+09,3.336548400852502346e+09 -2.013000000000000000e+03,1.000000000000000000e+09,1.926509855881731749e+09,4.718592000000277519e+09 -2.013000000000000000e+03,1.860000000000000000e+09,1.926509855881731749e+09,4.718592000000277519e+09 -2.013000000000000000e+03,4.200000000000000000e+09,1.926509855881731749e+09,4.718592000000277519e+09 -2.013000000000000000e+03,5.000000000000000000e+09,1.926509855881731749e+09,4.718592000000277519e+09 -2.014000000000000000e+03,1.400000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.014000000000000000e+03,2.000000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.014000000000000000e+03,2.600000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.014000000000000000e+03,3.000000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.014000000000000000e+03,4.310000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.014000000000000000e+03,5.560000000000000000e+09,2.711066455735692978e+09,6.673096801705395699e+09 -2.015000000000000000e+03,1.750000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,1.900000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,2.000000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,2.000000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,3.000000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,3.990000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,7.100000000000000000e+09,3.815127810000936031e+09,9.437184000000036240e+09 -2.015000000000000000e+03,1.000000000000000000e+10,3.815127810000936031e+09,9.437184000000036240e+09 -2.016000000000000000e+03,3.000000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.016000000000000000e+03,3.200000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.016000000000000000e+03,3.300000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.016000000000000000e+03,4.000000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.016000000000000000e+03,7.200000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.016000000000000000e+03,8.000000000000000000e+09,5.368809818678068161e+09,1.334619360341005898e+10 -2.017000000000000000e+03,5.300000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,5.300000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,4.300000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,4.800000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,4.800000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,4.800000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,6.100000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,9.700000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,5.500000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,7.000000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,8.000000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,2.500000000000000000e+08,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,5.450000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,4.300000000000000000e+09,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,1.800000000000000000e+10,7.555217100086343765e+09,1.887436800000117874e+10 -2.017000000000000000e+03,1.920000000000000000e+10,7.555217100086343765e+09,1.887436800000117874e+10 -2.018000000000000000e+03,8.500000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.018000000000000000e+03,6.900000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.018000000000000000e+03,6.900000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.019000000000000000e+03,1.030000000000000000e+10,1.496183306881744766e+10,3.774873600000028229e+10 -2.019000000000000000e+03,8.000000000000000000e+09,1.496183306881744766e+10,3.774873600000028229e+10 -2.018000000000000000e+03,5.500000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.018000000000000000e+03,1.000000000000000000e+10,1.063202224650451469e+10,2.669238720682168579e+10 -2.019000000000000000e+03,8.500000000000000000e+09,1.496183306881744766e+10,3.774873600000028229e+10 -2.018000000000000000e+03,8.786000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.018000000000000000e+03,9.000000000000000000e+09,1.063202224650451469e+10,2.669238720682168579e+10 -2.019000000000000000e+03,5.990000000000000000e+09,1.496183306881744766e+10,3.774873600000028229e+10 -2.019000000000000000e+03,9.890000000000000000e+09,1.496183306881744766e+10,3.774873600000028229e+10 -2.019000000000000000e+03,3.954000000000000000e+10,1.496183306881744766e+10,3.774873600000028229e+10 -2.019000000000000000e+03,3.000000000000000000e+10,1.496183306881744766e+10,3.774873600000028229e+10 diff --git a/content/mooreslaw_regression.npz b/content/mooreslaw_regression.npz deleted file mode 100644 index fc9d5e95..00000000 Binary files a/content/mooreslaw_regression.npz and /dev/null differ diff --git a/content/pairing.md b/content/pairing.md index 85ed1291..573f15d4 100644 --- a/content/pairing.md +++ b/content/pairing.md @@ -4,8 +4,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.6.0 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -16,7 +16,7 @@ kernelspec: ## What you'll do This guide will keep a Jupyter notebook synced _or paired_ between -`.ipynb` and `.md`. +`.ipynb` and `.md`. ## What you'll learn - The difference between Jupyter's json format and MyST-NB's markdown @@ -44,15 +44,15 @@ format. Jupyter notebooks are stored on your disk in a [json format](https://nbformat.readthedocs.io/en/latest/format_description.html). The json format is very powerful and allows you to store almost any input and output that -Python libraries can create. The drawback is that it is hard to see and compare changes made in the notebook file when reviewing pull requests, because this means the reviewers are looking only at the raw json files. +Python libraries can create. The drawback is that it is hard to see and compare changes made in the notebook file when reviewing pull requests, because this means the reviewers are looking only at the raw json files. -MyST-NB notebooks are stored on your disk in a +MyST-NB notebooks are stored on your disk in a [markdown](https://en.wikipedia.org/wiki/Markdown) format. The markdown format is a lightweight markup language. Its key design goal is [_readability_](https://daringfireball.net/projects/markdown/syntax#philosophy). The drawback is that markdown can only store the inputs of your code. Each time you open the notebook, you must execute the inputs to see the -output. +output. > __Note:__ You should use [common mark](https://commonmark.org) > markdown cells. Jupyter only renders common mark markdown, but MyST-NB @@ -64,7 +64,7 @@ output. Consider these two versions of the same __Simple notebook example__. You have three things in the notebooks: -1. A markdown cell that explains the code +1. A markdown cell that explains the code ```This code calculates 2+2 and prints the output.``` 2. A code cell that shows the code ```python @@ -78,10 +78,12 @@ have three things in the notebooks: --- __
Simple notebook example
__ This code calculates 2+2 and prints the output. -```{code-cell} ipython3 + +```{code-cell} x = 2 + 2 -print('x = ', x) +print("x = ", x) ``` + --- Here are the two Simple notebook example raw inputs side-by-side: @@ -186,7 +188,7 @@ When you submit a Jupyter notebook to NumPy tutorials, we (the reviewers) will c it to a MyST-NB format. You can also submit the MyST-NB `.md` in your pull request. To keep the `.ipynb` and `.md` in sync--_or paired_--you need -[Jupytext](https://jupytext.readthedocs.io/en/latest/index.html). +[Jupytext](https://jupytext.readthedocs.io/en/latest/index.html). Install `jupytext` using: @@ -200,7 +202,7 @@ conda install jupytext -c conda-forge Once installed, start your `jupyter lab` or `jupyter notebook` session in the browser. When launching `jupyter lab` it will ask you to rebuild -to include the Jupytext extension. +to include the Jupytext extension. You can pair the two formats in the classic Jupyter, Jupyter Lab, or the command line: @@ -238,8 +240,8 @@ jupytext --sync notebook.ipynb ## Wrapping up -In this tutorial, you saw the json `.ipynb` and MyST-NB `.md` raw code +In this tutorial, you saw the json `.ipynb` and MyST-NB `.md` raw code to create Jupyter notebooks. You can use both formats to create tutorials. Now you can work in either a simple text editor like VIM or emacs or continue building notebooks in your browser. Jupytext can -handle pairing to keep your work in sync. +handle pairing to keep your work in sync. diff --git a/content/save-load-arrays.md b/content/save-load-arrays.md index 0d8b4fe6..2620bfaf 100644 --- a/content/save-load-arrays.md +++ b/content/save-load-arrays.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.6.0 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -22,14 +22,14 @@ file types back into NumPy workspaces. ## What you'll do You'll learn two ways of saving and reading files--as compressed and as -text files--that will serve most of your storage needs in NumPy. +text files--that will serve most of your storage needs in NumPy. -* You'll create two 1D arrays and one 2D array +* You'll create two 1D arrays and one 2D array * You'll save these arrays to files * You'll remove variables from your workspace * You'll load the variables from your saved file * You'll compare zipped binary files to human-readable delimited files -* You'll finish with the skills of saving, loading, and sharing NumPy arrays +* You'll finish with the skills of saving, loading, and sharing NumPy arrays ## What you'll need @@ -39,7 +39,7 @@ text files--that will serve most of your storage needs in NumPy. Load the necessary functions using the following command. -```{code-cell} ipython3 +```{code-cell} import numpy as np ``` @@ -63,12 +63,12 @@ In this tutorial, you will use the following Python, IPython magic, and NumPy fu Now that you have imported the NumPy library, you can make a couple of arrays; let's start with two 1D arrays, `x` and `y`, where `y = -x**2`.You +x**2`.You will assign `x` to the integers from 0 to 9 using [`np.arange`](https://numpy.org/doc/stable/reference/generated/numpy.arange.html). -```{code-cell} ipython3 -x = np.arange(0, 10, 1) +```{code-cell} +x = np.arange(10) y = x ** 2 print(x) print(y) @@ -76,7 +76,7 @@ print(y) ## Save your arrays with NumPy's [`savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html?highlight=savez#numpy.savez) -Now you have two arrays in your workspace, +Now you have two arrays in your workspace, `x: [0 1 2 3 4 5 6 7 8 9]` @@ -85,12 +85,12 @@ Now you have two arrays in your workspace, The first thing you will do is save them to a file as zipped arrays using [`savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html?highlight=savez#numpy.savez). -You will use two options to label the arrays in the file, +You will use two options to label the arrays in the file, 1. `x_axis = x`: this option is assigning the name `x_axis` to the variable `x` 2. `y_axis = y`: this option is assigning the name `y_axis` to the variable `y` -```{code-cell} ipython3 +```{code-cell} np.savez("x_y-squared.npz", x_axis=x, y_axis=y) ``` @@ -103,7 +103,7 @@ name `x_y-squared.npz`. This file is a zipped binary of the two arrays, format](https://numpy.org/doc/stable/reference/generated/numpy.lib.format.html#module-numpy.lib.format) files. The NPY format is a [native binary format](https://en.wikipedia.org/wiki/Binary_file). You cannot read -the numbers in a standard text editor or spreadsheet. +the numbers in a standard text editor or spreadsheet. 1. remove `x` and `y` from the workspaec with [`del`](https://docs.python.org/3/reference/simple_stmts.html#del) 2. load the arrays into the workspace in a dictionary with [`np.load`](https://numpy.org/doc/stable/reference/generated/numpy.load.html#numpy.load) @@ -112,31 +112,31 @@ To see what variables are in the workspace, use the Jupyter/IPython "magic" command [`whos`](https://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-whos). -```{code-cell} ipython3 +```{code-cell} del x, y ``` -```{code-cell} ipython3 +```{code-cell} %whos ``` -```{code-cell} ipython3 +```{code-cell} load_xy = np.load("x_y-squared.npz") print(load_xy.files) ``` -```{code-cell} ipython3 -whos +```{code-cell} +%whos ``` ## Reassign the NpzFile arrays to `x` and `y` You've now created the dictionary with an `NpzFile`-type. The included files are `x_axis` and `y_axis` that you defined in your -`savez` command. You can reassign `x` and `y` to the `load_xy` files. +`savez` command. You can reassign `x` and `y` to the `load_xy` files. -```{code-cell} ipython3 +```{code-cell} x = load_xy["x_axis"] y = load_xy["y_axis"] print(x) @@ -153,7 +153,7 @@ that is easier to share. Next, you use the [`savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html#numpy.savetxt) to save `x` and `y` in a comma separated value file, `x_y-squared.csv`. The resulting csv is composed of ASCII characters. You can load the file -back into NumPy or read it with other programs. +back into NumPy or read it with other programs. ## Rearrange the data into a single 2D array First, you have to create a single 2D array from your two 1D arrays. The @@ -167,7 +167,7 @@ two NumPy functions to format the data: 2. [`np.newaxis`](https://numpy.org/doc/stable/reference/constants.html?highlight=newaxis#numpy.newaxis): this function forces the 1D array into a 2D column vector with 10 rows and 1 column. -```{code-cell} ipython3 +```{code-cell} array_out = np.block([x[:, np.newaxis], y[:, np.newaxis]]) print("the output array has shape ", array_out.shape, " with values:") print(array_out) @@ -181,24 +181,14 @@ You use `savetxt` with a three options to make your file easier to read: * `header = 'x, y'`: this option writes a header before any data that labels the columns of the csv * `delimiter = ','`: this option tells `savetxt` to place a comma between each column in the file -```{code-cell} ipython3 +```{code-cell} np.savetxt("x_y-squared.csv", X=array_out, header="x, y", delimiter=",") ``` Open the file, `x_y-squared.csv`, and you'll see the following: -``` -# x, y -0.000000000000000000e+00,0.000000000000000000e+00 -1.000000000000000000e+00,1.000000000000000000e+00 -2.000000000000000000e+00,4.000000000000000000e+00 -3.000000000000000000e+00,9.000000000000000000e+00 -4.000000000000000000e+00,1.600000000000000000e+01 -5.000000000000000000e+00,2.500000000000000000e+01 -6.000000000000000000e+00,3.600000000000000000e+01 -7.000000000000000000e+00,4.900000000000000000e+01 -8.000000000000000000e+00,6.400000000000000000e+01 -9.000000000000000000e+00,8.100000000000000000e+01 +```{code-cell} +!head x_y-squared.csv ``` ## Our arrays as a csv file @@ -208,31 +198,29 @@ There are two features that you shoud notice here: 1. NumPy uses `#` to ignore headings when using `loadtxt`. If you're using [`loadtxt`](https://numpy.org/doc/stable/reference/generated/numpy.loadtxt.html) with other csv files, you can skip header rows with `skiprows = -`. +`. 2. The integers were written in scientific notation. _You can_ specify the format of the text using the `savetxt` option, [`fmt = `](https://docs.python.org/3/library/string.html#formatstrings), but it will still be written with ASCII characters. In general, you cannot -preserve the type of ASCII numbers as `float` or `int`. +preserve the type of ASCII numbers as `float` or `int`. -Now, delete `x` and `y` again and assign them to your columns in `x-y_squared.csv`. +Now, delete `x` and `y` again and assign them to your columns in `x-y_squared.csv`. -```{code-cell} ipython3 +```{code-cell} del x, y ``` -```{code-cell} ipython3 -load_xy = np.loadtxt( - "x_y-squared.csv", - delimiter=",") +```{code-cell} +load_xy = np.loadtxt("x_y-squared.csv", delimiter=",") ``` -```{code-cell} ipython3 +```{code-cell} load_xy.shape ``` -```{code-cell} ipython3 +```{code-cell} x = load_xy[:, 0] y = load_xy[:, 1] print(x) @@ -242,12 +230,12 @@ print(y) ## Success, but remember your types When you saved the arrays to the csv file, you did not preserve the -`int` type. When loading the arrays back into your workspace the default process will be to load the csv file as a 2D floating point array e.g. `load_xy.dtype == 'float64'` and `load_xy.shape == (10, 2)`. +`int` type. When loading the arrays back into your workspace the default process will be to load the csv file as a 2D floating point array e.g. `load_xy.dtype == 'float64'` and `load_xy.shape == (10, 2)`. +++ ## Wrapping up -In conclusion, you can create, save, and load arrays in NumPy. Saving arrays makes sharing your work and collaboration much easier. There are other ways Python can save data to files, such as [pickle](https://docs.python.org/3/library/pickle.html), but `savez` and `savetxt` will serve most of your storage needs for future NumPy work and sharing with other people, respectively. +In conclusion, you can create, save, and load arrays in NumPy. Saving arrays makes sharing your work and collaboration much easier. There are other ways Python can save data to files, such as [pickle](https://docs.python.org/3/library/pickle.html), but `savez` and `savetxt` will serve most of your storage needs for future NumPy work and sharing with other people, respectively. __Next steps__: you can import data with missing values from [Importing with genfromtext](https://numpy.org/devdocs/user/basics.io.genfromtxt.html) or learn more about general NumPy IO with [Reading and Writing Files](https://numpy.org/devdocs/user/how-to-io.html). diff --git a/content/text_preprocessing.py b/content/text_preprocessing.py new file mode 100644 index 00000000..cdfa3ad0 --- /dev/null +++ b/content/text_preprocessing.py @@ -0,0 +1,188 @@ +import pandas as pd +import argparse +import numpy as np +import re # (https://docs.python.org/3/library/re.html) for tokenising textual data +import string # (https://docs.python.org/3/library/string.html) for string operations + +# Creating the random instance +rng = np.random.default_rng() + +class TextPreprocess: + """Text Preprocessing for a Natural Language Processing model.""" + + + def cleantext(self, df, text_column, remove_stopwords = True, remove_punc = True): + """Function to clean text data by removing stopwords, tags and punctuation. + + Parameters + ---------- + df : pandas dataframe + The dataframe housing the input data. + text_column : str + Column in dataframe whose text is to be cleaned. + remove_stopwords : bool + if True, remove stopwords from text + remove_punc : bool + if True, remove punctuation suymbols from text + + Returns + ------- + Numpy array + Cleaned text. + + """ + data = df + # converting all characters to lowercase + data[text_column] = data[text_column].str.lower() + + # List of common stopwords taken from https://gist.github.com/sebleier/554280 + stopwords = [ "a", "about", "above", "after", "again", "against", "all", "am", "an", "and", "any", "are", "as", "at", "be", "because", + "been", "before", "being", "below", "between", "both", "but", "by", "could", "did", "do", "does", "doing", "down", "during", + "each", "few", "for", "from", "further", "had", "has", "have", "having", "he", "he'd", "he'll", "he's", "her", "here", + "here's", "hers", "herself", "him", "himself", "his", "how", "how's", "i", "i'd", "i'll", "i'm", "i've", "if", "in", "into", + "is", "it", "it's", "its", "itself", "let's", "me", "more", "most", "my", "myself", "nor", "of", "on", "once", "only", "or", + "other", "ought", "our", "ours", "ourselves", "out", "over", "own", "same", "she", "she'd", "she'll", "she's", "should", + "so", "some", "such", "than", "that", "that's", "the", "their", "theirs", "them", "themselves", "then", "there", "there's", + "these", "they", "they'd", "they'll", "they're", "they've", "this", "those", "through", "to", "too", "under", "until", "up", + "very", "was", "we", "we'd", "we'll", "we're", "we've", "were", "what", "what's", "when", "when's", "where", "where's", + "which", "while", "who", "who's", "whom", "why", "why's", "with", "would", "you", "you'd", "you'll", "you're", "you've", + "your", "yours", "yourself", "yourselves" ] + + def remove_stopwords(data, column): + data[f'{column} without stopwords'] = data[column].apply(lambda x : ' '.join([word for word in x.split() if word not in (stopwords)])) + return data + + def remove_tags(string): + result = re.sub('<*>','',string) + return result + + # remove html tags and brackets from text + if remove_stopwords: + data_without_stopwords = remove_stopwords(data, text_column) + data_without_stopwords[f'clean_{text_column}']= data_without_stopwords[f'{text_column} without stopwords'].apply(lambda cw : remove_tags(cw)) + if remove_punc: + data_without_stopwords[f'clean_{text_column}'] = data_without_stopwords[f'clean_{text_column}'].str.replace('[{}]'.format(string.punctuation), ' ', regex = True) + + X = data_without_stopwords[f'clean_{text_column}'].to_numpy() + + return X + + def split_data (self, X, y, split_percentile): + """Function to split data into training and testing data. + + Parameters + ---------- + X : Numpy Array + Contains textual data. + y : Numpy Array + Contains target data. + split_percentile : int + Proportion of training to testing data. + + + Returns + ------- + Tuple + Contains numpy arrays of test and training data. + + """ + y = np.array(list(map(lambda x: 1 if x=="positive" else 0, y))) + arr_rand = rng.random(X.shape[0]) + split = arr_rand < np.percentile(arr_rand, split_percentile) + X_train = X[split] + y_train = y[split] + X_test = X[~split] + y_test = y[~split] + + return (X_train, y_train, X_test, y_test) + + + def sent_tokeniser (self, x): + """Function to split text into sentences. + + Parameters + ---------- + x : str + piece of text + + Returns + ------- + list + sentences with punctuation removed. + + """ + sentences = re.split(r'(?= np.datetime64('2020-03-24T00'))] + +before_lock = aqi_array[np.where(datetime <= np.datetime64('2020-03-21T00'))][-(after_lock.shape[0]):] + +print(after_lock.shape) +print(before_lock.shape) +``` + +To make sure our samples are *approximately* normally distributed, we take samples of size `n = 30`. `before_sample` and `after_sample` are the set of random observations drawn before and after the total lockdown. We use [random.Generator.choice](https://numpy.org/devdocs/reference/random/generated/numpy.random.Generator.choice.html) to generate the samples. + +```{code-cell} ipython3 +rng = default_rng() + +before_sample = rng.choice(before_lock, size=30, replace=False) +after_sample = rng.choice(after_lock, size=30, replace=False) +``` + +### Defining the hypothesis + +Let us assume that there is no significant difference between the sample means before and after the lockdown. This will be the null hypothesis. The alternative hypothesis would be that there *is* a significant difference between the means and the AQI *improved*. Mathematically, + +$H_{0}: \mu_\text{after-before} = 0$ \ +$H_{a}: \mu_\text{after-before} < 0$ + ++++ + +### Calculating the test statistics + +We will use the `t` statistic to evaluate our hypothesis and even calculate the `p value` from it. The formula for the `t` statistic is: + +$$ +t = \frac{\mu_\text{after-before}}{\sqrt{\sigma^{2}/n}} +$$ + +where, + +$\mu_\text{after-before}$ = mean differences of samples \ +$\sigma^{2}$ = variance of mean differences \ +$n$ = sample size + +```{code-cell} ipython3 +def t_test(x, y): + diff = y - x + var = np.var(diff, ddof=1) + num = np.mean(diff) + denom = np.sqrt(var / len(x)) + return np.divide(num, denom) + +t_value = t_test(before_sample, after_sample) +``` + +For the `p` value, we will use SciPy's `stats.distributions.t.cdf()` function. It takes two arguments- the `t statistic` and the degrees of freedom (`dof`). The formula for `dof` is `n - 1`. + +```{code-cell} ipython3 +dof = len(before_sample) - 1 + +p_value = stats.distributions.t.cdf(t_value, dof) + +print("The t value is {} and the p value is {}.".format(t_value, p_value)) +``` + +## What do the `t` and `p` values mean? + +We will now compare the calculated test statistics with the critical test statistics. The critical `t` value is calculated by looking up the [t-distribution table](https://en.wikipedia.org/wiki/Student%27s_t-distribution#Table_of_selected_values). + +![Table of selected t values at different confidence levels. T value for 29 dof at 95% confidence level is highlighted with a yellow square](_static/11-t-table.png) + +From the table above, the critical value is 1.699 for 29 `dof` at a confidence level of 95%. Since we are using the left tailed test, our critical value is -1.699. Clearly, the calculated `t` value is less than the critical value so we can safely reject the null hypothesis. + +The critical `p` value, denoted by $\alpha$, is usually chosen to be 0.05, corresponding to a confidence level of 95%. If the calculated `p` value is less than $\alpha$, then the null hypothesis can be safely rejected. Clearly, our `p` value is much less than $\alpha$, so we can reject the null hypothesis. + +Note that this does not mean we can accept the alternative hypothesis. It only tells us that there is not enough evidence to reject $H_{a}$. In other words, we fail to reject the alternative hypothesis so, it *may* be true. + ++++ + +*** + +## In practice... + +- The [pandas](https://pandas.pydata.org/) library is preferable to use for time-series data analysis. + +- The SciPy stats module provides the [stats.ttest_rel](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest_rel.html) function which can be used to get the `t statistic` and `p value`. + +- In real life, data are generally not normally distributed. There are tests for such non-normal data like the [Wilcoxon test](https://en.wikipedia.org/wiki/Wilcoxon_signed-rank_test). + +## Further reading + +- There are a host of statistical tests you can choose according to the characteristics of the given data. Read more about them at +[A Gentle Introduction to Statistical Data Distributions](https://machinelearningmastery.com/statistical-data-distributions/). + +- There are various versions of the [Student's t-test](https://en.wikipedia.org/wiki/Student%27s_t-test) that you can adopt according to your needs. diff --git a/content/tutorial-deep-learning-on-mnist.md b/content/tutorial-deep-learning-on-mnist.md index e6f574af..e1085b91 100644 --- a/content/tutorial-deep-learning-on-mnist.md +++ b/content/tutorial-deep-learning-on-mnist.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.7.1 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -33,7 +33,7 @@ This tutorial was adapted from the work by [Andrew Trask](https://github.com/iam The reader should have some knowledge of Python, NumPy array manipulation, and linear algebra. In addition, you should be familiar with main concepts of [deep learning](https://en.wikipedia.org/wiki/Deep_learning). -To refresh the memory, you can take the [Python](https://docs.python.org/dev/tutorial/index.html) and [Linear algebra on n-dimensional arrays](https://numpy.org/doc/stable/user/tutorial-svd.html) tutorials. +To refresh the memory, you can take the [Python](https://docs.python.org/dev/tutorial/index.html) and [Linear algebra on n-dimensional arrays](https://numpy.org/numpy-tutorials/content/tutorial-svd.html) tutorials. You are advised to read the [Deep learning](http://www.cs.toronto.edu/~hinton/absps/NatureDeepReview.pdf) paper published in 2015 by Yann LeCun, Yoshua Bengio, and Geoffrey Hinton, who are regarded as some of the pioneers of the field. You should also consider reading Andrew Trask's [Grokking Deep Learning](https://www.manning.com/books/grokking-deep-learning), which teaches deep learning with NumPy. @@ -62,23 +62,23 @@ This tutorial can be run locally in an isolated environment, such as [Virtualenv ## 1. Load the MNIST dataset -In this section, you will download the zipped MNIST dataset files originally stored in [Yann LeCun's website](http://yann.lecun.com/exdb/mnist/). Then, you will transform them into 4 files of NumPy array type using built-in Python modules. Finally, you will split the arrays into training and test sets. +In this section, you will download the zipped MNIST dataset files originally developed by Yann LeCun's research team. (More details of the MNIST dataset are available on [Kaggle](https://www.kaggle.com/datasets/hojjatk/mnist-dataset).) Then, you will transform them into 4 files of NumPy array type using built-in Python modules. Finally, you will split the arrays into training and test sets. **1.** Define a variable to store the training/test image/label names of the MNIST dataset in a list: -```{code-cell} ipython3 +```{code-cell} data_sources = { - "training_images": "train-images-idx3-ubyte.gz", # 60,000 training images. - "test_images": "t10k-images-idx3-ubyte.gz", # 10,000 test images. - "training_labels": "train-labels-idx1-ubyte.gz", # 60,000 training labels. - "test_labels": "t10k-labels-idx1-ubyte.gz" # 10,000 test labels. + "training_images": "train-images-idx3-ubyte.gz", # 60,000 training images. + "test_images": "t10k-images-idx3-ubyte.gz", # 10,000 test images. + "training_labels": "train-labels-idx1-ubyte.gz", # 60,000 training labels. + "test_labels": "t10k-labels-idx1-ubyte.gz", # 10,000 test labels. } ``` **2.** Load the data. First check if the data is stored locally; if not, then download it. -```{code-cell} ipython3 +```{code-cell} :tags: [remove-cell] # Use responsibly! When running notebooks locally, be sure to keep local @@ -92,14 +92,14 @@ request_opts = { } ``` -```{code-cell} ipython3 +```{code-cell} import requests import os data_dir = "../_data" os.makedirs(data_dir, exist_ok=True) -base_url = "https://github.com/rossbar/numpy-tutorial-data-mirror/blob/main/" +base_url = "https://ossci-datasets.s3.amazonaws.com/mnist/" for fname in data_sources.values(): fpath = os.path.join(data_dir, fname) @@ -114,7 +114,7 @@ for fname in data_sources.values(): **3.** Decompress the 4 files and create 4 [`ndarrays`](https://numpy.org/doc/stable/reference/arrays.ndarray.html), saving them into a dictionary. Each original image is of size 28x28 and neural networks normally expect a 1D vector input; therefore, you also need to reshape the images by multiplying 28 by 28 (784). -```{code-cell} ipython3 +```{code-cell} import gzip import numpy as np @@ -122,45 +122,57 @@ mnist_dataset = {} # Images for key in ("training_images", "test_images"): - with gzip.open(os.path.join(data_dir, data_sources[key]), 'rb') as mnist_file: - mnist_dataset[key] = np.frombuffer(mnist_file.read(), np.uint8, offset=16).reshape(-1, 28*28) + with gzip.open(os.path.join(data_dir, data_sources[key]), "rb") as mnist_file: + mnist_dataset[key] = np.frombuffer( + mnist_file.read(), np.uint8, offset=16 + ).reshape(-1, 28 * 28) # Labels for key in ("training_labels", "test_labels"): - with gzip.open(os.path.join(data_dir, data_sources[key]), 'rb') as mnist_file: + with gzip.open(os.path.join(data_dir, data_sources[key]), "rb") as mnist_file: mnist_dataset[key] = np.frombuffer(mnist_file.read(), np.uint8, offset=8) ``` **4.** Split the data into training and test sets using the standard notation of `x` for data and `y` for labels, calling the training and test set images `x_train` and `x_test`, and the labels `y_train` and `y_test`: -```{code-cell} ipython3 -x_train, y_train, x_test, y_test = (mnist_dataset["training_images"], - mnist_dataset["training_labels"], - mnist_dataset["test_images"], - mnist_dataset["test_labels"]) +```{code-cell} +x_train, y_train, x_test, y_test = ( + mnist_dataset["training_images"], + mnist_dataset["training_labels"], + mnist_dataset["test_images"], + mnist_dataset["test_labels"], +) ``` **5.** You can confirm that the shape of the image arrays is `(60000, 784)` and `(10000, 784)` for training and test sets, respectively, and the labels — `(60000,)` and `(10000,)`: -```{code-cell} ipython3 -print('The shape of training images: {} and training labels: {}'.format(x_train.shape, y_train.shape)) -print('The shape of test images: {} and test labels: {}'.format(x_test.shape, y_test.shape)) +```{code-cell} +print( + "The shape of training images: {} and training labels: {}".format( + x_train.shape, y_train.shape + ) +) +print( + "The shape of test images: {} and test labels: {}".format( + x_test.shape, y_test.shape + ) +) ``` **6.** And you can inspect some images using Matplotlib: -```{code-cell} ipython3 +```{code-cell} import matplotlib.pyplot as plt # Take the 60,000th image (indexed at 59,999) from the training set, # reshape from (784, ) to (28, 28) to have a valid shape for displaying purposes. mnist_image = x_train[59999, :].reshape(28, 28) # Set the color mapping to grayscale to have a black background. -plt.imshow(mnist_image, cmap='gray') +plt.imshow(mnist_image, cmap="gray") # Display the image. plt.show() ``` -```{code-cell} ipython3 +```{code-cell} # Display 5 random images from the training set. num_examples = 5 seed = 147197952744 @@ -168,7 +180,7 @@ rng = np.random.default_rng(seed) fig, axes = plt.subplots(1, num_examples) for sample, ax in zip(rng.choice(x_train, size=num_examples, replace=False), axes): - ax.imshow(sample.reshape(28, 28), cmap='gray') + ax.imshow(sample.reshape(28, 28), cmap="gray") ``` _Above are five images taken from the MNIST training set. Various hand-drawn @@ -185,7 +197,7 @@ Arabic numerals are shown, with exact values chosen randomly with each run of th > ... > ``` -```{code-cell} ipython3 +```{code-cell} # Display the label of the 60,000th image (indexed at 59,999) from the training set. y_train[59999] ``` @@ -209,9 +221,9 @@ You will normalize them into floating-point arrays in the [0, 1] interval by div **1.** Check that the vectorized image data has type `uint8`: -```{code-cell} ipython3 -print('The data type of training images: {}'.format(x_train.dtype)) -print('The data type of test images: {}'.format(x_test.dtype)) +```{code-cell} +print("The data type of training images: {}".format(x_train.dtype)) +print("The data type of test images: {}".format(x_test.dtype)) ``` **2.** Normalize the arrays by dividing them by 255 (and thus promoting the data type from `uint8` to `float64`) and then assign the train and test image data variables — `x_train` and `x_test` — to `training_images` and `train_labels`, respectively. @@ -222,7 +234,7 @@ of the complete datasets of 60,000 and 10,000 images, respectively. These values can be controlled by changing the `training_sample` and `test_sample` below, up to their maximum values of 60,000 and 10,000. -```{code-cell} ipython3 +```{code-cell} training_sample, test_sample = 1000, 1000 training_images = x_train[0:training_sample] / 255 test_images = x_test[0:test_sample] / 255 @@ -230,9 +242,9 @@ test_images = x_test[0:test_sample] / 255 **3.** Confirm that the image data has changed to the floating-point format: -```{code-cell} ipython3 -print('The data type of training images: {}'.format(training_images.dtype)) -print('The data type of test images: {}'.format(test_images.dtype)) +```{code-cell} +print("The data type of training images: {}".format(training_images.dtype)) +print("The data type of test images: {}".format(test_images.dtype)) ``` > **Note:** You can also check that normalization was successful by printing `training_images[0]` in a notebook cell. Your long output should contain an array of floating-point numbers: @@ -257,39 +269,39 @@ array([0., 0., 0., 0., 0., 1., 0., 0., 0., 0.]) **1.** Confirm that the image label data are integers with `dtype` `uint8`: -```{code-cell} ipython3 -print('The data type of training labels: {}'.format(y_train.dtype)) -print('The data type of test labels: {}'.format(y_test.dtype)) +```{code-cell} +print("The data type of training labels: {}".format(y_train.dtype)) +print("The data type of test labels: {}".format(y_test.dtype)) ``` **2.** Define a function that performs one-hot encoding on arrays: -```{code-cell} ipython3 +```{code-cell} def one_hot_encoding(labels, dimension=10): # Define a one-hot variable for an all-zero vector # with 10 dimensions (number labels from 0 to 9). - one_hot_labels = (labels[..., None] == np.arange(dimension)[None]) + one_hot_labels = labels[..., None] == np.arange(dimension)[None] # Return one-hot encoded labels. return one_hot_labels.astype(np.float64) ``` **3.** Encode the labels and assign the values to new variables: -```{code-cell} ipython3 +```{code-cell} training_labels = one_hot_encoding(y_train[:training_sample]) test_labels = one_hot_encoding(y_test[:test_sample]) ``` **4.** Check that the data type has changed to floating point: -```{code-cell} ipython3 -print('The data type of training labels: {}'.format(training_labels.dtype)) -print('The data type of test labels: {}'.format(test_labels.dtype)) +```{code-cell} +print("The data type of training labels: {}".format(training_labels.dtype)) +print("The data type of test labels: {}".format(test_labels.dtype)) ``` **5.** Examine a few encoded labels: -```{code-cell} ipython3 +```{code-cell} print(training_labels[0]) print(training_labels[1]) print(training_labels[2]) @@ -297,7 +309,7 @@ print(training_labels[2]) ...and compare to the originals: -```{code-cell} ipython3 +```{code-cell} print(y_train[0]) print(y_train[1]) print(y_train[2]) @@ -391,17 +403,18 @@ Having covered the main deep learning concepts and the neural network architectu **1.** We'll start by creating a new random number generator, providing a seed for reproducibility: -```{code-cell} ipython3 +```{code-cell} seed = 884736743 rng = np.random.default_rng(seed) ``` **2.** For the hidden layer, define the ReLU activation function for forward propagation and ReLU's derivative that will be used during backpropagation: -```{code-cell} ipython3 +```{code-cell} # Define ReLU that returns the input if it's positive and 0 otherwise. -def relu (x): - return (x>=0) * x +def relu(x): + return (x >= 0) * x + # Set up a derivative of the ReLU function that returns 1 for a positive input # and 0 otherwise. @@ -417,7 +430,7 @@ def relu2deriv(output): - _Size of the input:_ `pixels_per_image` — you have established that the image input is 784 (28x28) (in pixels). - _Number of labels_: `num_labels` — indicates the output number for the output layer where the predictions occur for 10 (0 to 9) handwritten digit labels. -```{code-cell} ipython3 +```{code-cell} learning_rate = 0.005 epochs = 20 hidden_size = 100 @@ -427,7 +440,7 @@ num_labels = 10 **4.** Initialize the weight vectors that will be used in the hidden and output layers with random values: -```{code-cell} ipython3 +```{code-cell} weights_1 = 0.2 * rng.random((pixels_per_image, hidden_size)) - 0.1 weights_2 = 0.2 * rng.random((hidden_size, num_labels)) - 0.1 ``` @@ -438,7 +451,7 @@ its performance over the training epochs. Start the training process: -```{code-cell} ipython3 +```{code-cell} # To store training and test set losses and accurate predictions # for visualization. store_training_loss = [] @@ -486,9 +499,11 @@ for j in range(epochs): # image labels (the truth) and the prediction by the model. training_loss += np.sum((training_labels[i] - layer_2) ** 2) # 2. Increment the accurate prediction count. - training_accurate_predictions += int(np.argmax(layer_2) == np.argmax(training_labels[i])) + training_accurate_predictions += int( + np.argmax(layer_2) == np.argmax(training_labels[i]) + ) # 3. Differentiate the loss function/error. - layer_2_delta = (training_labels[i] - layer_2) + layer_2_delta = training_labels[i] - layer_2 # 4. Propagate the gradients of the loss function back through the hidden layer. layer_1_delta = np.dot(weights_2, layer_2_delta) * relu2deriv(layer_1) # 5. Apply the dropout to the gradients. @@ -516,7 +531,7 @@ for j in range(epochs): results = relu(test_images @ weights_1) @ weights_2 # Measure the error between the actual label (truth) and prediction values. - test_loss = np.sum((test_labels - results)**2) + test_loss = np.sum((test_labels - results) ** 2) # Measure prediction accuracy on test set test_accurate_predictions = np.sum( @@ -528,12 +543,15 @@ for j in range(epochs): store_test_accurate_pred.append(test_accurate_predictions) # Summarize error and accuracy metrics at each epoch - print("\n" + \ - "Epoch: " + str(j) + \ - " Training set error:" + str(training_loss/ float(len(training_images)))[0:5] +\ - " Training set accuracy:" + str(training_accurate_predictions/ float(len(training_images))) +\ - " Test set error:" + str(test_loss/ float(len(test_images)))[0:5] +\ - " Test set accuracy:" + str(test_accurate_predictions/ float(len(test_images)))) + print( + ( + f"Epoch: {j}\n" + f" Training set error: {training_loss / len(training_images):.3f}\n" + f" Training set accuracy: {training_accurate_predictions / len(training_images)}\n" + f" Test set error: {test_loss / len(test_images):.3f}\n" + f" Test set accuracy: {test_accurate_predictions / len(test_images)}" + ) + ) ``` The training process may take many minutes, depending on a number of factors, such as the processing power of the machine you are running the experiment on and the number of epochs. To reduce the waiting time, you can change the epoch (iteration) variable from 100 to a lower number, reset the runtime (which will reset the weights), and run the notebook cells again. @@ -542,29 +560,32 @@ The training process may take many minutes, depending on a number of factors, su After executing the cell above, you can visualize the training and test set errors and accuracy for an instance of this training process. -```{code-cell} ipython3 +```{code-cell} +epoch_range = np.arange(epochs) + 1 # Starting from 1 + # The training set metrics. -y_training_error = [store_training_loss[i]/float(len(training_images)) for i in range(len(store_training_loss))] -x_training_error = range(1, len(store_training_loss)+1) -y_training_accuracy = [store_training_accurate_pred[i]/ float(len(training_images)) for i in range(len(store_training_accurate_pred))] -x_training_accuracy = range(1, len(store_training_accurate_pred)+1) +training_metrics = { + "accuracy": np.asarray(store_training_accurate_pred) / len(training_images), + "error": np.asarray(store_training_loss) / len(training_images), +} # The test set metrics. -y_test_error = [store_test_loss[i]/float(len(test_images)) for i in range(len(store_test_loss))] -x_test_error = range(1, len(store_test_loss)+1) -y_test_accuracy = [store_training_accurate_pred[i]/ float(len(training_images)) for i in range(len(store_training_accurate_pred))] -x_test_accuracy = range(1, len(store_test_accurate_pred)+1) +test_metrics = { + "accuracy": np.asarray(store_test_accurate_pred) / len(test_images), + "error": np.asarray(store_test_loss) / len(test_images), +} # Display the plots. fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(15, 5)) -axes[0].set_title('Training set error, accuracy') -axes[0].plot(x_training_accuracy, y_training_accuracy, label = "Training set accuracy") -axes[0].plot(x_training_error, y_training_error, label = "Training set error") -axes[0].set_xlabel("Epochs") -axes[1].set_title('Test set error, accuracy') -axes[1].plot(x_test_accuracy, y_test_accuracy, label = "Test set accuracy") -axes[1].plot(x_test_error, y_test_error, label = "Test set error") -axes[1].set_xlabel("Epochs") +for ax, metrics, title in zip( + axes, (training_metrics, test_metrics), ("Training set", "Test set") +): + # Plot the metrics + for metric, values in metrics.items(): + ax.plot(epoch_range, values, label=metric.capitalize()) + ax.set_title(title) + ax.set_xlabel("Epochs") + ax.legend() plt.show() ``` diff --git a/content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md b/content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md index 98b05a5a..1598e572 100644 --- a/content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md +++ b/content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md @@ -4,8 +4,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.7.1 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -14,7 +14,15 @@ kernelspec: # Deep reinforcement learning with Pong from pixels -This tutorial demonstrates how to implement a deep reinforcement learning (RL) agent from scratch using a policy gradient method that learns to play the [Pong](https://gym.openai.com/envs/Pong-v0/) video game using screen pixels as inputs with NumPy. Your Pong agent will obtain experience on the go using an [artificial neural network](https://en.wikipedia.org/wiki/Artificial_neural_network) as its [policy](https://en.wikipedia.org/wiki/Reinforcement_learning). +```{caution} + +This article is not currently tested due to licensing/installation issues with +the underlying `gym` and `atari-py` dependencies. +Help improve this article by developing an example with reduced dependency +footprint! +``` + +This tutorial demonstrates how to implement a deep reinforcement learning (RL) agent from scratch using a policy gradient method that learns to play the [Pong](https://en.wikipedia.org/wiki/Pong) video game using screen pixels as inputs with NumPy. Your Pong agent will obtain experience on the go using an [artificial neural network](https://en.wikipedia.org/wiki/Artificial_neural_network) as its [policy](https://en.wikipedia.org/wiki/Reinforcement_learning). Pong is a 2D game from 1972 where two players use "rackets" to play a form of table tennis. Each player moves the racket up and down the screen and tries to hit a ball in their opponent's direction by touching it. The goal is to hit the ball such that it goes past the opponent's racket (they miss their shot). According to the rules, if a player reaches 21 points, they win. In Pong, the RL agent that learns to play against an opponent is displayed on the right. @@ -24,7 +32,7 @@ This example is based on the [code](https://gist.github.com/karpathy/a4166c7fe25 ## Prerequisites -- **OpenAI Gym**: To help with the game environment, you will use [Gym](https://gym.openai.com) — an open-source Python interface [developed by OpenAI](https://arxiv.org/abs/1606.01540) that helps perform RL tasks while supporting many simulation environments. +- **OpenAI Gym**: To help with the game environment, you will use [Gym](https://github.com/openai/gym) — an open-source Python interface [developed by OpenAI](https://arxiv.org/abs/1606.01540) that helps perform RL tasks while supporting many simulation environments. - **Python and NumPy**: The reader should have some knowledge of Python, NumPy array manipulation, and linear algebra. - **Deep learning and deep RL**: You should be familiar with main concepts of [deep learning](https://en.wikipedia.org/wiki/Deep_learning), which are explained in the [Deep learning](http://www.cs.toronto.edu/~hinton/absps/NatureDeepReview.pdf) paper published in 2015 by Yann LeCun, Yoshua Bengio, and Geoffrey Hinton, who are regarded as some of the pioneers of the field. The tutorial will try to guide you through the main concepts of deep RL and you will find various literature with links to original sources for your convenience. - **Jupyter notebook environments**: Because RL experiments can require high computing power, you can run the tutorial on the cloud for free using [Binder](https://mybinder.org) or [Google Colaboratory](https://colab.research.google.com/notebooks/intro.ipynb) (which offers free limited GPU and TPU acceleration). @@ -77,31 +85,31 @@ You will train your Pong agent through an "on-policy" method using policy gradie **1.** First, you should install OpenAI Gym (using `pip install gym[atari]` - this package is currently not available on conda), and import NumPy, Gym and the necessary modules: -```{code-cell} ipython3 +```python import numpy as np import gym ``` Gym can monitor and save the output using the `Monitor` wrapper: -```{code-cell} ipython3 +```python from gym import wrappers from gym.wrappers import Monitor ``` **2.** Instantiate a Gym environment for the game of Pong: -```{code-cell} ipython3 +```python env = gym.make("Pong-v0") ``` **3.** Let's review which actions are available in the `Pong-v0` environment: -```{code-cell} ipython3 +```python print(env.action_space) ``` -```{code-cell} ipython3 +```python print(env.get_action_meanings()) ``` @@ -111,8 +119,8 @@ For simplicity, your policy network will have one output — a (log) probability **4.** Gym can save videos of the agent's learning in an MP4 format — wrap `Monitor()` around the environment by running the following: -```{code-cell} ipython3 -env = Monitor(env, './video', force=True) +```python +env = Monitor(env, "./video", force=True) ``` While you can perform all kinds of RL experiments in a Jupyter notebook, rendering images or videos of a Gym environment to visualize how your agent plays the game of Pong after training can be rather challenging. If you want to set up video playback in a notebook, you can find the details in the Appendix at the end of this tutorial. @@ -127,7 +135,7 @@ Pong screen frames are 210x160 pixels over 3 color dimensions (red, green and bl **1.** Check the Pong's observations: -```{code-cell} ipython3 +```python print(env.observation_space) ``` @@ -143,12 +151,12 @@ In Gym, the agent's actions and observations can be part of the `Box` (n-dimensi (You can refer to the OpenAI Gym core [API](https://github.com/openai/gym/blob/master/gym/core.py) for more information about Gym's core classes and methods.) -```{code-cell} ipython3 +```python import matplotlib.pyplot as plt env.seed(42) env.reset() -random_frame = env.render(mode='rgb_array') +random_frame = env.render(mode="rgb_array") print(random_frame.shape) plt.imshow(random_frame) ``` @@ -157,25 +165,25 @@ To feed the observations into the policy (neural) network, you need to convert t **3.** Set up a helper function for frame (observation) preprocessing: -```{code-cell} ipython3 +```python def frame_preprocessing(observation_frame): # Crop the frame. observation_frame = observation_frame[35:195] # Downsample the frame by a factor of 2. - observation_frame = observation_frame[::2,::2,0] + observation_frame = observation_frame[::2, ::2, 0] # Remove the background and apply other enhancements. - observation_frame[observation_frame == 144] = 0 # Erase the background (type 1). - observation_frame[observation_frame == 109] = 0 # Erase the background (type 2). - observation_frame[observation_frame != 0] = 1 # Set the items (rackets, ball) to 1. + observation_frame[observation_frame == 144] = 0 # Erase the background (type 1). + observation_frame[observation_frame == 109] = 0 # Erase the background (type 2). + observation_frame[observation_frame != 0] = 1 # Set the items (rackets, ball) to 1. # Return the preprocessed frame as a 1D floating-point array. return observation_frame.astype(float) ``` **4.** Preprocess the random frame from earlier to test the function — the input for the policy network is an 80x80 1D image: -```{code-cell} ipython3 +```python preprocessed_random_frame = frame_preprocessing(random_frame) -plt.imshow(preprocessed_random_frame, cmap='gray') +plt.imshow(preprocessed_random_frame, cmap="gray") print(preprocessed_random_frame.shape) ``` @@ -193,7 +201,7 @@ Next, you will define the policy as a simple feedforward network that uses a gam Start by creating a random number generator instance for the experiment (seeded for reproducibility): -```{code-cell} +```python rng = np.random.default_rng(seed=12288743) ``` @@ -201,19 +209,19 @@ Then: - Set the input (observation) dimensionality - your preprocessed screen frames: -```{code-cell} ipython3 +```python D = 80 * 80 ``` - Set the number of hidden layer neurons. -```{code-cell} ipython3 +```python H = 200 ``` - Instantiate your policy (neural) network model as an empty dictionary. -```{code-cell} ipython3 +```python model = {} ``` @@ -221,22 +229,22 @@ In a neural network, _weights_ are important adjustable parameters that the netw **2.** Using a technique called [Xavier initialization](https://www.deeplearning.ai/ai-notes/initialization/#IV), set up the network model's initial weights with NumPy's [`Generator.standard_normal()`](https://numpy.org/doc/stable/reference/random/generated/numpy.random.Generator.standard_normal.html) that returns random numbers over a standard Normal distribution, as well as [`np.sqrt()`](https://numpy.org/doc/stable/reference/generated/numpy.sqrt.html?highlight=numpy.sqrt#numpy.sqrt): -```{code-cell} ipython3 -model['W1'] = rng.standard_normal(size=(H,D)) / np.sqrt(D) -model['W2'] = rng.standard_normal(size=H) / np.sqrt(H) +```python +model["W1"] = rng.standard_normal(size=(H, D)) / np.sqrt(D) +model["W2"] = rng.standard_normal(size=H) / np.sqrt(H) ``` **3.** Your policy network starts by randomly initializing the weights and feeds the input data (frames) forward from the input layer through a hidden layer to the output layers. This process is called the _forward pass_ or _forward propagation_, and is outlined in the function `policy_forward()`: -```{code-cell} ipython3 +```python def policy_forward(x, model): # Matrix-multiply the weights by the input in the one and only hidden layer. - h = np.dot(model['W1'], x) + h = np.dot(model["W1"], x) # Apply non-linearity with ReLU. - h[h<0] = 0 + h[h < 0] = 0 # Calculate the "dot" product in the outer layer. # The input for the sigmoid function is called logit. - logit = np.dot(model['W2'], h) + logit = np.dot(model["W2"], h) # Apply the sigmoid function (non-linear activation). p = sigmoid(logit) # Return a log probability for the action 2 ("move up") @@ -251,7 +259,7 @@ Note that there are two _activation functions_ for determining non-linear relati **4.** Define the sigmoid function separately with NumPy's [`np.exp()`](https://numpy.org/doc/stable/reference/generated/numpy.exp.html?highlight=numpy.exp#numpy.exp) for computing exponentials: -```{code-cell} ipython3 +```python def sigmoid(x): return 1.0 / (1.0 + np.exp(-x)) ``` @@ -262,21 +270,21 @@ During learning in your deep RL algorithm, you use the action log probabilities **1.** Let's define the backward pass function (`policy_backward()`) with the help of NumPy's modules for array multiplication — [`np.dot()`](https://numpy.org/doc/stable/reference/generated/numpy.dot.html?highlight=numpy.dot#numpy.dot) (matrix multiplication), [`np.outer()`](https://numpy.org/doc/stable/reference/generated/numpy.outer.html) (outer product computation), and [`np.ravel()`](https://numpy.org/doc/stable/reference/generated/numpy.ravel.html) (to flatten arrays into 1D arrays): -```{code-cell} ipython3 +```python def policy_backward(eph, epdlogp, model): dW2 = np.dot(eph.T, epdlogp).ravel() - dh = np.outer(epdlogp, model['W2']) + dh = np.outer(epdlogp, model["W2"]) dh[eph <= 0] = 0 dW1 = np.dot(dh.T, epx) # Return new "optimized" weights for the policy network. - return {'W1':dW1, 'W2':dW2} + return {"W1": dW1, "W2": dW2} ``` Using the intermediate hidden "states" of the network (`eph`) and the gradients of action log probabilities (`epdlogp`) for an episode, the `policy_backward` function propagates the gradients back through the policy network and update the weights. **2.** When applying backpropagation during agent training, you will need to save several variables for each episode. Let's instantiate empty lists to store them: -```{code-cell} ipython3 +```python # All preprocessed observations for the episode. xs = [] # All hidden "states" (from the network) for the episode. @@ -292,7 +300,7 @@ You will reset these variables manually at the end of each episode during traini **3.** Next, to perform a gradient ascent when optimizing the agent's policy, it is common to use deep learning _optimizers_ (you're performing optimization with gradients). In this example, you'll use [RMSProp](https://en.wikipedia.org/wiki/Stochastic_gradient_descent#RMSProp) — an adaptive optimization [method](http://www.cs.toronto.edu/~tijmen/csc321/slides/lecture_slides_lec6.pdf). Let's set a discounting factor — a decay rate — for the optimizer: -```{code-cell} ipython3 +```python decay_rate = 0.99 ``` @@ -300,14 +308,14 @@ decay_rate = 0.99 - First, save the update buffers that add up gradients over a batch: -```{code-cell} ipython3 -grad_buffer = { k : np.zeros_like(v) for k,v in model.items() } +```python +grad_buffer = {k: np.zeros_like(v) for k, v in model.items()} ``` - Second, store the RMSProp memory for the optimizer for gradient ascent: -```{code-cell} ipython3 -rmsprop_cache = { k : np.zeros_like(v) for k,v in model.items() } +```python +rmsprop_cache = {k: np.zeros_like(v) for k, v in model.items()} ``` ## Define the discounted rewards (expected return) function @@ -316,16 +324,18 @@ In this section, you will set up a function for computing discounted rewards (`d To provide more weight to shorter-term rewards over longer-term ones, you will use a _discount factor_ (gamma) that is often a floating-point number between 0.9 and 0.99. -```{code-cell} ipython3 +```python gamma = 0.99 + def discount_rewards(r, gamma): discounted_r = np.zeros_like(r) running_add = 0 # From the last reward to the first... for t in reversed(range(0, r.size)): # ...reset the reward sum - if r[t] != 0: running_add = 0 + if r[t] != 0: + running_add = 0 # ...compute the discounted reward running_add = running_add * gamma + r[t] discounted_r[t] = running_add @@ -361,7 +371,7 @@ You can stop the training at any time or/and check saved MP4 videos of saved pla **1.** For demo purposes, let's limit the number of episodes for training to 3. If you are using hardware acceleration (CPUs and GPUs), you can increase the number to 1,000 or beyond. For comparison, Andrej Karpathy's original experiment took about 8,000 episodes. -```{code-cell} ipython3 +```python max_episodes = 3 ``` @@ -369,32 +379,32 @@ max_episodes = 3 - The _batch size_ dictates how often (in episodes) the model performs a parameter update. It is the number of times your agent can collect the state-action trajectories. At the end of the collection, you can perform the maximization of action-probability multiples. - The [_learning rate_](https://en.wikipedia.org/wiki/Learning_rate) helps limit the magnitude of weight updates to prevent them from overcorrecting. -```{code-cell} ipython3 +```python batch_size = 3 learning_rate = 1e-4 ``` **3.** Set the game rendering default variable for Gym's `render` method (it is used to display the observation and is optional but can be useful during debugging): -```{code-cell} ipython3 +```python render = False ``` **4.** Set the agent's initial (random) observation by calling `reset()`: -```{code-cell} ipython3 +```python observation = env.reset() ``` **5.** Initialize the previous observation: -```{code-cell} ipython3 +```python prev_x = None ``` **6.** Initialize the reward variables and the episode count: -```{code-cell} ipython3 +```python running_reward = None reward_sum = 0 episode_number = 0 @@ -402,7 +412,7 @@ episode_number = 0 **7.** To simulate motion between the frames, set the single input frame (`x`) for the policy network as the difference between the current and previous preprocessed frames: -```{code-cell} ipython3 +```python def update_input(prev_x, cur_x, D): if prev_x is not None: x = cur_x - prev_x @@ -413,7 +423,7 @@ def update_input(prev_x, cur_x, D): **8.** Finally, start the training loop, using the functions you have predefined: -```{code-cell} ipython3 +```python :tags: [output_scroll] while episode_number < max_episodes: @@ -500,11 +510,13 @@ while episode_number < max_episodes: # parameter (weight) update at every batch size # (by default: every 10 episodes). if episode_number % batch_size == 0: - for k,v in model.items(): + for k, v in model.items(): # The gradient. g = grad_buffer[k] # Use the RMSProp discounting factor. - rmsprop_cache[k] = decay_rate * rmsprop_cache[k] + (1 - decay_rate) * g**2 + rmsprop_cache[k] = ( + decay_rate * rmsprop_cache[k] + (1 - decay_rate) * g ** 2 + ) # Update the policy network with a learning rate # and the RMSProp optimizer using gradient ascent # (hence, there's no negative sign) @@ -513,8 +525,16 @@ while episode_number < max_episodes: grad_buffer[k] = np.zeros_like(v) # 18. Measure the total discounted reward. - running_reward = reward_sum if running_reward is None else running_reward * 0.99 + reward_sum * 0.01 - print ('Resetting the Pong environment. Episode total reward: {} Running mean: {}'.format(reward_sum, running_reward)) + running_reward = ( + reward_sum + if running_reward is None + else running_reward * 0.99 + reward_sum * 0.01 + ) + print( + "Resetting the Pong environment. Episode total reward: {} Running mean: {}".format( + reward_sum, running_reward + ) + ) # 19. Set the agent's initial observation by calling Gym's `reset()` function # for the next episode and setting the reward sum back to 0. @@ -524,14 +544,17 @@ while episode_number < max_episodes: # 20. Display the output during training. if reward != 0: - print ('Episode {}: Game finished. Reward: {}...'.format(episode_number, reward) + ('' if reward == -1 else ' POSITIVE REWARD!')) + print( + "Episode {}: Game finished. Reward: {}...".format(episode_number, reward) + + ("" if reward == -1 else " POSITIVE REWARD!") + ) ``` A few notes: - If you have previously run an experiment and want to repeat it, your `Monitor` instance may still be running, which may throw an error the next time you try to traini the agent. Therefore, you should first shut down `Monitor` by calling `env.close()` by uncommenting and running the cell below: -```{code-cell} ipython3 +```python # env.close() ``` diff --git a/content/tutorial-ma.md b/content/tutorial-ma.md index ddb6af19..fcb69eb2 100644 --- a/content/tutorial-ma.md +++ b/content/tutorial-ma.md @@ -4,8 +4,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.7.1 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -38,7 +38,7 @@ Use the masked arrays module from NumPy to analyze COVID-19 data and deal with m ## What are masked arrays? -Consider the following problem. You have a dataset with missing or invalid entries. If you're doing any kind of processing on this data, and want to *skip* or flag these unwanted entries without just deleting them, you may have to use conditionals or filter your data somehow. The [numpy.ma](https://numpy.org/devdocs/reference/maskedarray.generic.html#module-numpy.ma) module provides some of the same funcionality of [NumPy ndarrays](https://numpy.org/devdocs/reference/generated/numpy.ndarray.html#numpy.ndarray) with added structure to ensure invalid entries are not used in computation. +Consider the following problem. You have a dataset with missing or invalid entries. If you're doing any kind of processing on this data, and want to *skip* or flag these unwanted entries without just deleting them, you may have to use conditionals or filter your data somehow. The [numpy.ma](https://numpy.org/devdocs/reference/maskedarray.generic.html#module-numpy.ma) module provides some of the same functionality of [NumPy ndarrays](https://numpy.org/devdocs/reference/generated/numpy.ndarray.html#numpy.ndarray) with added structure to ensure invalid entries are not used in computation. From the [Reference Guide](https://numpy.org/devdocs/reference/maskedarray.generic.html#module-numpy.ma): @@ -67,9 +67,10 @@ Masked arrays are also a good idea since the `numpy.ma` module also comes with a From [Kaggle](https://www.kaggle.com/atilamadai/covid19) it is possible to download a dataset with initial data about the COVID-19 outbreak in the beginning of 2020. We are going to look at a small subset of this data, contained in the file `who_covid_19_sit_rep_time_series.csv`. *(Note that this file has been replaced with a version without missing data sometime in late 2020.)* -```{code-cell} ipython3 +```{code-cell} import numpy as np import os + # The os.getcwd() function returns the current folder; you can change # the filepath variable to point to the folder where you saved the .csv file filepath = os.getcwd() @@ -82,28 +83,43 @@ The data file contains data of different types and is organized as follows: - The second through seventh row contain summary data that is of a different type than that which we are going to examine, so we will need to exclude that from the data with which we will work. - The numerical data we wish to work with begins at column 4, row 8, and extends from there to the rightmost column and the lowermost row. -Let's explore the data inside this file for the first 14 days of records. To gather data from the `.csv` file, we will use the [numpy.genfromtxt](https://numpy.org/devdocs/reference/generated/numpy.genfromtxt.html#numpy.genfromtxt) function, making sure we select only the columns with actual numbers instead of the first three columns which contain location data. We also skip the first 7 +Let's explore the data inside this file for the first 14 days of records. To gather data from the `.csv` file, we will use the [numpy.genfromtxt](https://numpy.org/devdocs/reference/generated/numpy.genfromtxt.html#numpy.genfromtxt) function, making sure we select only the columns with actual numbers instead of the first four columns which contain location data. We also skip the first 6 rows of this file, since they contain other data we are not interested in. Separately, we will extract the information about dates and location for this data. -```{code-cell} ipython3 +```{code-cell} # Note we are using skip_header and usecols to read only portions of the # data file into each variable. -# Read just the dates for columns 3-7 from the first row -dates = np.genfromtxt(filename, dtype=np.unicode_, delimiter=",", - max_rows=1, usecols=range(3, 17), - encoding="utf-8-sig") +# Read just the dates for columns 4-18 from the first row +dates = np.genfromtxt( + filename, + dtype=np.str_, + delimiter=",", + max_rows=1, + usecols=range(4, 18), + encoding="utf-8-sig", +) # Read the names of the geographic locations from the first two -# columns, skipping the first seven rows -locations = np.genfromtxt(filename, dtype=np.unicode_, delimiter=",", - skip_header=7, usecols=(0, 1), - encoding="utf-8-sig") +# columns, skipping the first six rows +locations = np.genfromtxt( + filename, + dtype=np.str_, + delimiter=",", + skip_header=6, + usecols=(0, 1), + encoding="utf-8-sig", +) # Read the numeric data from just the first 14 days -nbcases = np.genfromtxt(filename, dtype=np.int_, delimiter=",", - skip_header=7, usecols=range(3, 17), - encoding="utf-8-sig") +nbcases = np.genfromtxt( + filename, + dtype=np.int_, + delimiter=",", + skip_header=6, + usecols=range(4, 18), + encoding="utf-8-sig", +) ``` -Included in the `numpy.genfromtxt` function call, we have selected the [numpy.dtype](https://numpy.org/devdocs/reference/generated/numpy.dtype.html#numpy.dtype) for each subset of the data (either an integer - `numpy.int_` - or a string of characters - `numpy.unicode_`). We have also used the `encoding` argument to select `utf-8-sig` as the encoding for the file (read more about encoding in the [official Python documentation](https://docs.python.org/3/library/codecs.html#encodings-and-unicode). You can read more about the `numpy.genfromtxt` function from the [Reference Documentation](https://numpy.org/devdocs/reference/generated/numpy.genfromtxt.html#numpy.genfromtxt) or from the [Basic IO tutorial](https://numpy.org/devdocs/user/basics.io.genfromtxt.html). +Included in the `numpy.genfromtxt` function call, we have selected the [numpy.dtype](https://numpy.org/devdocs/reference/generated/numpy.dtype.html#numpy.dtype) for each subset of the data (either an integer - `numpy.int_` - or a string of characters - `numpy.str_`). We have also used the `encoding` argument to select `utf-8-sig` as the encoding for the file (read more about encoding in the [official Python documentation](https://docs.python.org/3/library/codecs.html#encodings-and-unicode). You can read more about the `numpy.genfromtxt` function from the [Reference Documentation](https://numpy.org/devdocs/reference/generated/numpy.genfromtxt.html#numpy.genfromtxt) or from the [Basic IO tutorial](https://numpy.org/devdocs/user/basics.io.genfromtxt.html). +++ @@ -111,18 +127,23 @@ Included in the `numpy.genfromtxt` function call, we have selected the [numpy.dt First of all, we can plot the whole set of data we have and see what it looks like. In order to get a readable plot, we select only a few of the dates to show in our [x-axis ticks](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.xticks.html#matplotlib.pyplot.xticks). Note also that in our plot command, we use `nbcases.T` (the transpose of the `nbcases` array) since this means we will plot each row of the file as a separate line. We choose to plot a dashed line (using the `'--'` line style). See the [matplotlib](https://matplotlib.org/) documentation for more info on this. -```{code-cell} ipython3 +```{code-cell} import matplotlib.pyplot as plt + selected_dates = [0, 3, 11, 13] -plt.plot(dates, nbcases.T, '--'); -plt.xticks(selected_dates, dates[selected_dates]); -plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020"); +plt.plot(dates, nbcases.T, "--") +plt.xticks(selected_dates, dates[selected_dates]) +plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020") ``` -The graph has a strange shape from January 24th to February 1st. It would be interesing to know where this data comes from. If we look at the `locations` array we extracted from the `.csv` file, we can see that we have two columns, where the first would contain regions and the second would contain the name of the country. However, only the first few rows contain data for the the first column (province names in China). Following that, we only have country names. So it would make sense to group all the data from China into a single row. For this, we'll select from the `nbcases` array only the rows for which the second entry of the `locations` array corresponds to China. Next, we'll use the [numpy.sum](https://numpy.org/devdocs/reference/generated/numpy.sum.html#numpy.sum) function to sum all the selected rows (`axis=0`): +The graph has a strange shape from January 24th to February 1st. It would be interesting to know where this data comes from. If we look at the `locations` array we extracted from the `.csv` file, we can see that we have two columns, where the first would contain regions and the second would contain the name of the country. However, only the first few rows contain data for the the first column (province names in China). Following that, we only have country names. So it would make sense to group all the data from China into a single row. For this, we'll select from the `nbcases` array only the rows for which the second entry of the `locations` array corresponds to China. Next, we'll use the [numpy.sum](https://numpy.org/devdocs/reference/generated/numpy.sum.html#numpy.sum) function to sum all the selected rows (`axis=0`). Note also that row 35 corresponds to the total counts for the whole country for each date. Since we want to calculate the sum ourselves from the provinces data, we have to remove that row first from both `locations` and `nbcases`: -```{code-cell} ipython3 -china_total = nbcases[locations[:, 1] == 'China'].sum(axis=0) +```{code-cell} +totals_row = 35 +locations = np.delete(locations, (totals_row), axis=0) +nbcases = np.delete(nbcases, (totals_row), axis=0) + +china_total = nbcases[locations[:, 1] == "China"].sum(axis=0) china_total ``` @@ -134,21 +155,22 @@ Something's wrong with this data - we are not supposed to have negative values i Looking at the data, here's what we find: there is a period with **missing data**: -```{code-cell} ipython3 +```{code-cell} nbcases ``` All the `-1` values we are seeing come from `numpy.genfromtxt` attempting to read missing data from the original `.csv` file. Obviously, we don't want to compute missing data as `-1` - we just want to skip this value so it doesn't interfere in our analysis. After importing the `numpy.ma` module, we'll create a new array, this time masking the invalid values: -```{code-cell} ipython3 +```{code-cell} from numpy import ma + nbcases_ma = ma.masked_values(nbcases, -1) ``` If we look at the `nbcases_ma` masked array, this is what we have: -```{code-cell} ipython3 +```{code-cell} nbcases_ma ``` @@ -160,22 +182,22 @@ Keep in mind that the `mask` attribute has a `True` value for elements correspon Let's try and see what the data looks like excluding the first row (data from the Hubei province in China) so we can look at the missing data more closely: -```{code-cell} ipython3 -plt.plot(dates, nbcases_ma[1:].T, '--'); -plt.xticks(selected_dates, dates[selected_dates]); -plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020"); +```{code-cell} +plt.plot(dates, nbcases_ma[1:].T, "--") +plt.xticks(selected_dates, dates[selected_dates]) +plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020") ``` Now that our data has been masked, let's try summing up all the cases in China: -```{code-cell} ipython3 -china_masked = nbcases_ma[locations[:, 1] == 'China'].sum(axis=0) +```{code-cell} +china_masked = nbcases_ma[locations[:, 1] == "China"].sum(axis=0) china_masked ``` Note that `china_masked` is a masked array, so it has a different data structure than a regular NumPy array. Now, we can access its data directly by using the `.data` attribute: -```{code-cell} ipython3 +```{code-cell} china_total = china_masked.data china_total ``` @@ -184,33 +206,35 @@ That is better: no more negative values. However, we can still see that for some First, we'll identify the indices of locations in mainland China: -```{code-cell} ipython3 -china_mask = ((locations[:, 1] == 'China') & - (locations[:, 0] != 'Hong Kong') & - (locations[:, 0] != 'Taiwan') & - (locations[:, 0] != 'Macau') & - (locations[:, 0] != 'Unspecified*')) +```{code-cell} +china_mask = ( + (locations[:, 1] == "China") + & (locations[:, 0] != "Hong Kong") + & (locations[:, 0] != "Taiwan") + & (locations[:, 0] != "Macau") + & (locations[:, 0] != "Unspecified*") +) ``` Now, `china_mask` is an array of boolean values (`True` or `False`); we can check that the indices are what we wanted with the [ma.nonzero](https://numpy.org/devdocs/reference/generated/numpy.ma.nonzero.html#numpy.ma.nonzero) method for masked arrays: -```{code-cell} ipython3 +```{code-cell} china_mask.nonzero() ``` Now we can correctly sum entries for mainland China: -```{code-cell} ipython3 +```{code-cell} china_total = nbcases_ma[china_mask].sum(axis=0) china_total ``` We can replace the data with this information and plot a new graph, focusing on Mainland China: -```{code-cell} ipython3 -plt.plot(dates, china_total.T, '--'); -plt.xticks(selected_dates, dates[selected_dates]); -plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China"); +```{code-cell} +plt.plot(dates, china_total.T, "--") +plt.xticks(selected_dates, dates[selected_dates]) +plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China") ``` It's clear that masked arrays are the right solution here. We cannot represent the missing data without mischaracterizing the evolution of the curve. @@ -221,7 +245,7 @@ It's clear that masked arrays are the right solution here. We cannot represent t One possibility we can think of is to interpolate the missing data to estimate the number of cases in late January. Observe that we can select the masked elements using the `.mask` attribute: -```{code-cell} ipython3 +```{code-cell} china_total.mask invalid = china_total[china_total.mask] invalid @@ -229,39 +253,42 @@ invalid We can also access the valid entries by using the logical negation for this mask: -```{code-cell} ipython3 +```{code-cell} valid = china_total[~china_total.mask] valid ``` Now, if we want to create a very simple approximation for this data, we should take into account the valid entries around the invalid ones. So first let's select the dates for which the data is valid. Note that we can use the mask from the `china_total` masked array to index the dates array: -```{code-cell} ipython3 +```{code-cell} dates[~china_total.mask] ``` -Finally, we can use the [numpy.polyfit](https://numpy.org/devdocs/reference/generated/numpy.polyfit.html#numpy.polyfit) and [numpy.polyval](https://numpy.org/devdocs/reference/generated/numpy.polyval.html#numpy.polyval) functions to create a cubic polynomial that fits the data as best as possible: +Finally, we can use the +[fitting functionality of the numpy.polynomial](https://numpy.org/doc/stable/reference/generated/numpy.polynomial.polynomial.Polynomial.fit.html) +package to create a cubic polynomial model that fits the data as best as possible: -```{code-cell} ipython3 +```{code-cell} t = np.arange(len(china_total)) -params = np.polyfit(t[~china_total.mask], valid, 3) -cubic_fit = np.polyval(params, t) -plt.plot(t, china_total); -plt.plot(t, cubic_fit, '--'); +model = np.polynomial.Polynomial.fit(t[~china_total.mask], valid, deg=3) +plt.plot(t, china_total) +plt.plot(t, model(t), "--") ``` This plot is not so readable since the lines seem to be over each other, so let's summarize in a more elaborate plot. We'll plot the real data when available, and show the cubic fit for unavailable data, using this fit to compute an estimate to the observed number of cases on January 28th 2020, 7 days after the beginning of the records: -```{code-cell} ipython3 -plt.plot(t, china_total); -plt.plot(t[china_total.mask], cubic_fit[china_total.mask], '--', color='orange'); -plt.plot(7, np.polyval(params, 7), 'r*'); -plt.xticks([0, 7, 13], dates[[0, 7, 13]]); -plt.yticks([0, np.polyval(params, 7), 10000, 17500]); -plt.legend(['Mainland China', 'Cubic estimate', '7 days after start']); -plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China\n" - "Cubic estimate for 7 days after start"); +```{code-cell} +plt.plot(t, china_total) +plt.plot(t[china_total.mask], model(t)[china_total.mask], "--", color="orange") +plt.plot(7, model(7), "r*") +plt.xticks([0, 7, 13], dates[[0, 7, 13]]) +plt.yticks([0, model(7), 10000, 17500]) +plt.legend(["Mainland China", "Cubic estimate", "7 days after start"]) +plt.title( + "COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China\n" + "Cubic estimate for 7 days after start" +) ``` ## In practice diff --git a/content/tutorial-nlp-from-scratch.md b/content/tutorial-nlp-from-scratch.md new file mode 100644 index 00000000..a4771883 --- /dev/null +++ b/content/tutorial-nlp-from-scratch.md @@ -0,0 +1,1059 @@ +--- +jupyter: + jupytext: + formats: md,ipynb + text_representation: + extension: .md + format_name: markdown + format_version: '1.3' + jupytext_version: 1.11.5 + kernelspec: + display_name: Python 3 (ipykernel) + language: python + name: python3 +--- + +# Sentiment Analysis on notable speeches of the last decade + +```{caution} + +This article is not currently tested. Help improve this tutorial by making it +fully executable! +``` + +This tutorial demonstrates how to build a simple Long Short Term memory network (LSTM) from scratch in NumPy to perform sentiment analysis on a socially relevant and ethically acquired dataset. + +Your deep learning model (the LSTM) is a form of a Recurrent Neural Network and will learn to classify a piece of text as positive or negative from the IMDB reviews dataset. The dataset contains 50,000 movie reviews and corresponding labels. Based on the numeric representations of these reviews and their corresponding labels (supervised learning) the neural network will be trained to learn the sentiment using forward propagation and backpropagation through time since we are dealing with sequential data here. The output will be a vector containing the probabilities that the text samples are positive. + + +Today, Deep Learning is getting adopted in everyday life and now it is more important to ensure that decisions that have been taken using AI are not reflecting discriminatory behavior towards a set of populations. It is important to take fairness into consideration while consuming the output from AI. Throughout the tutorial we'll try to question all the steps in our pipeline from an ethics point of view. + + +## Prerequisites + +You are expected to be familiar with the Python programming language and array manipulation with NumPy. In addition, some understanding of Linear Algebra and Calculus is recommended. You should also be familiar with how Neural Networks work. For reference, you can visit the [Python](https://docs.python.org/dev/tutorial/index.html), [Linear algebra on n-dimensional arrays](https://numpy.org/numpy-tutorials/content/tutorial-svd.html) and [Calculus](https://d2l.ai/chapter_appendix-mathematics-for-deep-learning/multivariable-calculus.html) tutorials. + +To get a refresher on Deep Learning basics, You should consider reading [the d2l.ai book](https://d2l.ai/chapter_recurrent-neural-networks/index.html), which is an interactive deep learning book with multi-framework code, math, and discussions. You can also go through the [Deep learning on MNIST from scratch tutorial](https://numpy.org/numpy-tutorials/content/tutorial-deep-learning-on-mnist.html) to understand how a basic neural network is implemented from scratch. + +In addition to NumPy, you will be utilizing the following Python standard modules for data loading and processing: +- [`pandas`](https://pandas.pydata.org/docs/) for handling dataframes +- [`Matplotlib`](https://matplotlib.org/) for data visualization +- [`pooch`](https://www.fatiando.org/pooch/latest/https://www.fatiando.org/pooch/latest/) to download and cache datasets + +This tutorial can be run locally in an isolated environment, such as [Virtualenv](https://virtualenv.pypa.io/en/stable/) or [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html). You can use [Jupyter Notebook or JupyterLab](https://jupyter.org/install) to run each notebook cell. + + +## Table of contents + +1. Data Collection + +2. Preprocess the datasets + +3. Build and train a LSTM network from scratch + +4. Perform sentiment analysis on collected speeches + +5. Next steps + + +## 1. Data Collection + +Before you begin there are a few pointers you should always keep in mind before choosing the data you wish to train your model on: +- **Identifying Data Bias** - Bias is an inherent component of the human thought process. Therefore data sourced from human activities reflects that bias. Some ways in which this bias tends to occur in Machine Learning datasets are: + - *Bias in historical data*: Historical data are often skewed towards, or against, particular groups. + Data can also be severely imbalanced with limited information on protected groups. + - *Bias in data collection mechanisms*: Lack of representativeness introduces inherent biases in the data collection process. + - *Bias towards observable outcomes*: In some scenarios, we have the information about True Outcomes only for a certain section of the population. In the absence of information on all outcomes, one cannot even measure fairness +- **Preserving human anonymity for sensitive data**: [Trevisan and Reilly](https://eprints.whiterose.ac.uk/91157/1/Ethical%20dilemmas.pdf) identified a list of sensitive topics that need to be handled with extra care. We present the same below along with a few additions: + - personal daily routines (including location data); + - individual details about impairment and/or medical records; + - emotional accounts of pain and chronic illness; + - financial information about income and/or welfare payments; + - discrimination and abuse episodes; + - criticism/praise of individual providers of healthcare and support services; + - suicidal thoughts; + - criticism/praise of a power structure especially if it compromises their safety; + - personally-identifying information (even if anonymized in some way) including things like fingerprints or voice. + +>While it can be difficult taking consent from so many people especially on on-line platforms, the necessity of it depends upon the sensitivity of the topics your data includes and other indicators like whether the platform the data was obtained from allows users to operate under pseudonyms. If the website has a policy that forces the use of a real name, then the users need to be asked for consent. + +In this section, you will be collecting two different datasets: the IMDb movie reviews dataset, and a collection of 10 speeches curated for this tutorial including activists from different countries around the world, different times, and different topics. The former would be used to train the deep learning model while the latter will be used to perform sentiment analysis on. + + +### Collecting the IMDb reviews dataset +IMDb Reviews Dataset is a large movie review dataset collected and prepared by Andrew L. Maas from the popular movie rating service, IMDb. The IMDb Reviews dataset is used for binary sentiment classification, whether a review is positive or negative. It contains 25,000 movie reviews for training and 25,000 for testing. All these 50,000 reviews are labeled data that may be used for supervised deep learning. For ease of reproducibility, we'll be sourcing the data from [Zenodo](https://zenodo.org/record/4117827#.YVQZ_EZBy3Ihttps://zenodo.org/record/4117827#.YVQZ_EZBy3I). + > The IMDb platform allows the usage of their public datasets for personal and non-commercial use. We did our best to ensure that these reviews do not contain any of the aforementioned sensitive topics pertaining to the reviewer. + + +### Collecting and loading the speech transcripts +We have chosen speeches by activists around the globe talking about issues like climate change, feminism, lgbtqa+ rights and racism. These were sourced from newspapers, the official website of the United Nations and the archives of established universities as cited in the table below. A CSV file was created containing the transcribed speeches, their speaker and the source the speeches were obtained from. +We made sure to include different demographics in our data and included a range of different topics, most of which focus on social and/or ethical issues. + +| Speech | Speaker | Source | +|--------------------------------------------------|-------------------------|------------------------------------------------------------| +| Barnard College Commencement | Leymah Gbowee | [Barnard College](https://barnard.edu/news/transcript-speech-nobel-peace-prize-winner-leymah-gbowee) | +| UN Speech on youth Education | Malala Yousafzai | [The Guardian](https://www.theguardian.com/commentisfree/2013/jul/12/malala-yousafzai-united-nations-education-speech-text) | +| Remarks in the UNGA on racial discrimination | Linda Thomas Greenfield | [United States mission to the United Nation](https://usun.usmission.gov/remarks-by-ambassador-linda-thomas-greenfield-at-a-un-general-assembly-commemorative-meeting-for-intl-day-for-the-elimination-of-racial-discrimination/) | +| How Dare You | Greta Thunberg | [NBC](https://www.nbcnews.com/news/world/read-greta-thunberg-s-full-speech-united-nations-climate-action-n1057861) | +| The speech that silenced the world for 5 minutes | Severn Suzuki | [Earth Charter](https://earthcharter.org/new-voices-after-26-years-of-the-girl-who-silenced-the-world-for-5-minutes/) | +| The Hope Speech | Harvey Milk | [Museum of Fine Arts, Boston](https://www.mfa.org/exhibitions/amalia-pica/transcript-harvey-milks-the-hope-speech) | +| Speech at the time to Thrive Conference | Ellen Page | [Huffpost](https://www.huffpost.com/entry/time-to-thrive_b_4794251) | +| I have a dream | Martin Luther King | [Marshall University](https://www.marshall.edu/onemarshallu/i-have-a-dream/) | + + +## 2. Preprocess the datasets +>Preprocessing data is an extremely crucial step before building any Deep learning model, however in an attempt to keep the tutorial focused on building the model, we will not dive deep into the code for preprocessing. Given below is a brief overview of all the steps we undertake to clean our data and convert it to its numeric representation. + +1. **Text Denoising** : Before converting your text into vectors, it is important to clean it and remove all unhelpful parts a.k.a the noise from your data by converting all characters to lowercase, removing html tags, brackets and stop words (words that don't add much meaning to a sentence). Without this step the dataset is often a cluster of words that the computer doesn't understand. + + +2. **Converting words to vectors** : A word embedding is a learned representation for text where words that have the same meaning have a similar representation. Individual words are represented as real-valued vectors in a predefined vector space. GloVe is an unsupervised algorithm developed by Stanford for generating word embeddings by generating global word-word co-occurence matrix from a corpus. You can download the zipped files containing the embeddings from [the GloVe official website](https://nlp.stanford.edu/projects/glove/). Here you can choose any of the four options for different sizes or training datasets. We have chosen the least memory consuming embedding file. + >The GloVe word embeddings include sets that were trained on billions of tokens, some up to 840 billion tokens. These algorithms exhibit stereotypical biases, such as gender bias which can be traced back to the original training data. For example certain occupations seem to be more biased towards a particular gender, reinforcing problematic stereotypes. The nearest solution to this problem are some de-biasing algorithms as the one presented in [this research article](https://web.stanford.edu/class/archive/cs/cs224n/cs224n.1184/reports/6835575.pdf), which one can use on embeddings of their choice to mitigate bias, if present. + + +You'll start with importing the necessary packages to build our Deep Learning network. + +```python +# Importing the necessary packages +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +import pooch +import string +import re +import zipfile +import os + +# Creating the random instance +rng = np.random.default_rng() +``` + +Next, you'll define set of text preprocessing helper functions. + +```python +class TextPreprocess: + """Text Preprocessing for a Natural Language Processing model.""" + + def txt_to_df(self, file): + """Function to convert a txt file to pandas dataframe. + + Parameters + ---------- + file : str + Path to the txt file. + + Returns + ------- + Pandas dataframe + txt file converted to a dataframe. + + """ + with open(imdb_train, 'r') as in_file: + stripped = (line.strip() for line in in_file) + reviews = {} + for line in stripped: + lines = [splits for splits in line.split("\t") if splits != ""] + reviews[lines[1]] = float(lines[0]) + df = pd.DataFrame(reviews.items(), columns=['review', 'sentiment']) + df = df.sample(frac=1).reset_index(drop=True) + return df + + def unzipper(self, zipped, to_extract): + """Function to extract a file from a zipped folder. + + Parameters + ---------- + zipped : str + Path to the zipped folder. + + to_extract: str + Path to the file to be extracted from the zipped folder + + Returns + ------- + str + Path to the extracted file. + + """ + fh = open(zipped, 'rb') + z = zipfile.ZipFile(fh) + outdir = os.path.split(zipped)[0] + z.extract(to_extract, outdir) + fh.close() + output_file = os.path.join(outdir, to_extract) + return output_file + + def cleantext(self, df, text_column=None, + remove_stopwords=True, remove_punc=True): + """Function to clean text data. + + Parameters + ---------- + df : pandas dataframe + The dataframe housing the input data. + text_column : str + Column in dataframe whose text is to be cleaned. + remove_stopwords : bool + if True, remove stopwords from text + remove_punc : bool + if True, remove punctuation symbols from text + + Returns + ------- + Numpy array + Cleaned text. + + """ + # converting all characters to lowercase + df[text_column] = df[text_column].str.lower() + + # List of stopwords taken from https://gist.github.com/sebleier/554280 + stopwords = ["a", "about", "above", "after", "again", "against", + "all", "am", "an", "and", "any", "are", + "as", "at", "be", "because", + "been", "before", "being", "below", + "between", "both", "but", "by", "could", + "did", "do", "does", "doing", "down", "during", + "each", "few", "for", "from", "further", + "had", "has", "have", "having", "he", + "he'd", "he'll", "he's", "her", "here", + "here's", "hers", "herself", "him", + "himself", "his", "how", "how's", "i", + "i'd", "i'll", "i'm", "i've", + "if", "in", "into", + "is", "it", "it's", "its", + "itself", "let's", "me", "more", + "most", "my", "myself", "nor", "of", + "on", "once", "only", "or", + "other", "ought", "our", "ours", + "ourselves", "out", "over", "own", "same", + "she", "she'd", "she'll", "she's", "should", + "so", "some", "such", "than", "that", + "that's", "the", "their", "theirs", "them", + "themselves", "then", "there", "there's", + "these", "they", "they'd", "they'll", + "they're", "they've", "this", "those", + "through", "to", "too", "under", "until", "up", + "very", "was", "we", "we'd", "we'll", + "we're", "we've", "were", "what", + "what's", "when", "when's", + "where", "where's", + "which", "while", "who", "who's", + "whom", "why", "why's", "with", + "would", "you", "you'd", "you'll", + "you're", "you've", + "your", "yours", "yourself", "yourselves"] + + def remove_stopwords(data, column): + data[f'{column} without stopwords'] = data[column].apply( + lambda x: ' '.join([word for word in x.split() if word not in (stopwords)])) + return data + + def remove_tags(string): + result = re.sub('<*>', '', string) + return result + + # remove html tags and brackets from text + if remove_stopwords: + data_without_stopwords = remove_stopwords(df, text_column) + data_without_stopwords[f'clean_{text_column}'] = data_without_stopwords[f'{text_column} without stopwords'].apply( + lambda cw: remove_tags(cw)) + if remove_punc: + data_without_stopwords[f'clean_{text_column}'] = data_without_stopwords[f'clean_{text_column}'].str.replace( + '[{}]'.format(string.punctuation), ' ', regex=True) + + X = data_without_stopwords[f'clean_{text_column}'].to_numpy() + + return X + + + def sent_tokeniser(self, x): + """Function to split text into sentences. + + Parameters + ---------- + x : str + piece of text + + Returns + ------- + list + sentences with punctuation removed. + + """ + sentences = re.split(r'(? Since we will be performing paragraph wise sentiment analysis on each speech further ahead in the tutorial, we'll need the punctuation marks to split the text into paragraphs, hence we refrain from removing their punctuation marks at this stage + +```python +speech_data_path = 'tutorial-nlp-from-scratch/speeches.csv' +speech_df = pd.read_csv(speech_data_path) +X_pred = textproc.cleantext(speech_df, + text_column='speech', + remove_stopwords=True, + remove_punc=False) +speakers = speech_df['speaker'].to_numpy() +``` + +You will now download the `GloVe` embeddings, unzip them and build a dictionary mapping each word and word embedding. This will act as a cache for when you need to replace each word with its respective word embedding. + +```python +glove = data.fetch('glove.6B.50d.zip') +emb_path = textproc.unzipper(glove, 'glove.6B.300d.txt') +emb_matrix = textproc.loadGloveModel(emb_path) +``` + +## 3. Build the Deep Learning Model + It is time to start implementing our LSTM! You will have to first familiarize yourself with some high-level concepts of the basic building blocks of a deep learning model. You can refer to the [Deep learning on MNIST from scratch tutorial](https://numpy.org/numpy-tutorials/content/tutorial-deep-learning-on-mnist.html) for the same. + +You will then learn how a Recurrent Neural Network differs from a plain Neural Network and what makes it so suitable for processing sequential data. Afterwards, you will construct the building blocks of a simple deep learning model in Python and NumPy and train it to learn to classify the sentiment of a piece of text as positive or negative with a certain level of accuracy + +### Introduction to a Long Short Term Memory Network + +In a [Multilayer perceptron](https://en.wikipedia.org/wiki/Multilayer_perceptron) (MLP), the information only moves in one direction — from the input layer, through the hidden layers, to the output layer. The information moves straight through the network and never takes the previous nodes into account at a later stage. Because it only considers the current input, the features learned are not shared across different positions of the sequence. Moreover, it cannot process sequences with varying lengths. + +Unlike an MLP, the RNN was designed to work with sequence prediction problems.RNNs introduce state variables to store past information, together with the current inputs, to determine the current outputs. Since an RNN shares the learned features with all the data points in a sequence regardless of its length, it is capable of processing sequences with varying lengths. + +The problem with an RNN however, is that it cannot retain long-term memory because the influence of a given input on the hidden layer, and therefore on the network output, either decays or blows up exponentially as it cycles around the network’s recurrent connections. This shortcoming is referred to as the vanishing gradient problem. Long Short-Term Memory (LSTM) is an RNN architecture specifically designed to address the [vanishing gradient problem](https://en.wikipedia.org/wiki/Vanishing_gradient_problem). + + +### Overview of the Model Architecture + +![Overview of the model architecture, showing a series of animated boxes. There are five identical boxes labeled A and receiving as input one of the words in the phrase "life's a box of chocolates". Each box is highlighted in turn, representing the memory blocks of the LSTM network as information passes through them, ultimately reaching a "Positive" output value.](_static/lstm.gif) + +In the above gif, the rectangles labeled $A$ are called `Cells` and they are the **Memory Blocks** of our LSTM network. They are responsible for choosing what to remember in a sequence and pass on that information to the next cell via two states called the `hidden state` $H_{t}$ and the `cell state` $C_{t}$ where $t$ indicates the time-step. Each `Cell` has dedicated gates which are responsible for storing, writing or reading the information passed to an LSTM. You will now look closely at the architecture of the network by implementing each mechanism happening inside of it. + + +Lets start with writing a function to randomly initialize the parameters which will be learned while our model trains + +```python +def initialise_params(hidden_dim, input_dim): + # forget gate + Wf = rng.standard_normal(size=(hidden_dim, hidden_dim + input_dim)) + bf = rng.standard_normal(size=(hidden_dim, 1)) + # input gate + Wi = rng.standard_normal(size=(hidden_dim, hidden_dim + input_dim)) + bi = rng.standard_normal(size=(hidden_dim, 1)) + # candidate memory gate + Wcm = rng.standard_normal(size=(hidden_dim, hidden_dim + input_dim)) + bcm = rng.standard_normal(size=(hidden_dim, 1)) + # output gate + Wo = rng.standard_normal(size=(hidden_dim, hidden_dim + input_dim)) + bo = rng.standard_normal(size=(hidden_dim, 1)) + + # fully connected layer for classification + W2 = rng.standard_normal(size=(1, hidden_dim)) + b2 = np.zeros((1, 1)) + + parameters = { + "Wf": Wf, + "bf": bf, + "Wi": Wi, + "bi": bi, + "Wcm": Wcm, + "bcm": bcm, + "Wo": Wo, + "bo": bo, + "W2": W2, + "b2": b2 + } + return parameters +``` + +### Forward Propagation + +Now that you have your initialized parameters, you can pass the input data in a forward direction through the network. Each layer accepts the input data, processes it and passes it to the successive layer. This process is called `Forward Propagation`. You will undertake the following mechanism to implement it: +- Loading the word embeddings of the input data +- Passing the embeddings to an LSTM +- Perform all the gate mechanisms in every memory block of the LSTM to obtain the final hidden state +- Passing the final hidden state through a fully connected layer to obtain the probability with which the sequence is positive +- Storing all the calculated values in a cache to utilize during backpropagation + + +[Sigmoid](https://d2l.ai/chapter_multilayer-perceptrons/mlp.html?highlight=sigmoid#sigmoid-function) belongs to the family of non-linear activation functions. It helps the network to update or forget the data. If the sigmoid of a value results in 0, the information is considered forgotten. Similarly, the information stays if it is 1. + +```python +def sigmoid(x): + n = np.exp(np.fmin(x, 0)) + d = (1 + np.exp(-np.abs(x))) + return n / d +``` + +The **Forget Gate** takes the current word embedding and the previous hidden state concatenated together as input. and decides what parts of the old memory cell content need attention and which can be ignored. + +```python +def fp_forget_gate(concat, parameters): + ft = sigmoid(np.dot(parameters['Wf'], concat) + + parameters['bf']) + return ft +``` + +The **Input Gate** takes the current word embedding and the previous hidden state concatenated together as input. and governs how much of the new data we take into account via the **Candidate Memory Gate** which utilizes the [Tanh](https://d2l.ai/chapter_multilayer-perceptrons/mlp.html?highlight=tanh#tanh-function) to regulate the values flowing through the network. + +```python +def fp_input_gate(concat, parameters): + it = sigmoid(np.dot(parameters['Wi'], concat) + + parameters['bi']) + cmt = np.tanh(np.dot(parameters['Wcm'], concat) + + parameters['bcm']) + return it, cmt +``` + +Finally we have the **Output Gate** which takes information from the current word embedding, previous hidden state and the cell state which has been updated with information from the forget and input gates to update the value of the hidden state. + +```python +def fp_output_gate(concat, next_cs, parameters): + ot = sigmoid(np.dot(parameters['Wo'], concat) + + parameters['bo']) + next_hs = ot * np.tanh(next_cs) + return ot, next_hs +``` + +The following image summarizes each gate mechanism in the memory block of a LSTM network: +>Image has been modified from [this](https://link.springer.com/chapter/10.1007%2F978-3-030-14524-8_11) source + +![Diagram showing three sections of a memory block, labeled "Forget gate", "Input gate" and "Output gate". Each gate contains several subparts, representing the operations performed at that stage of the process.](_static/mem_block.png) + +### But how do you obtain sentiment from the LSTM's output? + +The hidden state you obtain from the output gate of the last memory block in a sequence is considered to be a representation of all the information contained in a sequence. To classify this information into various classes (2 in our case, positive and negative) we use a **Fully Connected layer** which firstly maps this information to a predefined output size (1 in our case). Then, an activation function such as the sigmoid converts this output to a value between 0 and 1. We'll consider values greater than 0.5 to be indicative of a positive sentiment. + +```python +def fp_fc_layer(last_hs, parameters): + z2 = (np.dot(parameters['W2'], last_hs) + + parameters['b2']) + a2 = sigmoid(z2) + return a2 +``` + +Now you will put all these functions together to summarize the **Forward Propagation** step in our model architecture: + +```python +def forward_prop(X_vec, parameters, input_dim): + + hidden_dim = parameters['Wf'].shape[0] + time_steps = len(X_vec) + + # Initialise hidden and cell state before passing to first time step + prev_hs = np.zeros((hidden_dim, 1)) + prev_cs = np.zeros(prev_hs.shape) + + # Store all the intermediate and final values here + caches = {'lstm_values': [], 'fc_values': []} + + # Hidden state from the last cell in the LSTM layer is calculated. + for t in range(time_steps): + # Retrieve word corresponding to current time step + x = X_vec[t] + # Retrieve the embedding for the word and reshape it to make the LSTM happy + xt = emb_matrix.get(x, rng.random(size=(input_dim, 1))) + xt = xt.reshape((input_dim, 1)) + + # Input to the gates is concatenated previous hidden state and current word embedding + concat = np.vstack((prev_hs, xt)) + + # Calculate output of the forget gate + ft = fp_forget_gate(concat, parameters) + + # Calculate output of the input gate + it, cmt = fp_input_gate(concat, parameters) + io = it * cmt + + # Update the cell state + next_cs = (ft * prev_cs) + io + + # Calculate output of the output gate + ot, next_hs = fp_output_gate(concat, next_cs, parameters) + + # store all the values used and calculated by + # the LSTM in a cache for backward propagation. + lstm_cache = { + "next_hs": next_hs, + "next_cs": next_cs, + "prev_hs": prev_hs, + "prev_cs": prev_cs, + "ft": ft, + "it" : it, + "cmt": cmt, + "ot": ot, + "xt": xt, + } + caches['lstm_values'].append(lstm_cache) + + # Pass the updated hidden state and cell state to the next time step + prev_hs = next_hs + prev_cs = next_cs + + # Pass the LSTM output through a fully connected layer to + # obtain probability of the sequence being positive + a2 = fp_fc_layer(next_hs, parameters) + + # store all the values used and calculated by the + # fully connected layer in a cache for backward propagation. + fc_cache = { + "a2" : a2, + "W2" : parameters['W2'] + } + caches['fc_values'].append(fc_cache) + return caches +``` + +### Backpropagation + +After each forward pass through the network, you will implement the `backpropagation through time` algorithm to accumulate gradients of each parameter over the time steps. Backpropagation through a LSTM is not as straightforward as through other common Deep Learning architectures, due to the special way its underlying layers interact. Nonetheless, the approach is largely the same; identifying dependencies and applying the chain rule. + + +Lets start with defining a function to initialize gradients of each parameter as arrays made up of zeros with same dimensions as the corresponding parameter + +```python +# Initialise the gradients +def initialize_grads(parameters): + grads = {} + for param in parameters.keys(): + grads[f'd{param}'] = np.zeros((parameters[param].shape)) + return grads +``` + +Now, for each gate and the fully connected layer, we define a function to calculate the gradient of the loss with respect to the input passed and the parameters used. To understand the mathematics behind how the derivatives were calculated we suggest you to follow this helpful [blog](https://christinakouridi.blog/2019/06/19/backpropagation-lstm/) by Christina Kouridi. + + +Define a function to calculate the gradients in the **Forget Gate**: + +```python +def bp_forget_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters): + # dft = dL/da2 * da2/dZ2 * dZ2/dh_prev * dh_prev/dc_prev * dc_prev/dft + dft = ((dc_prev * cache["prev_cs"] + cache["ot"] + * (1 - np.square(np.tanh(cache["next_cs"]))) + * cache["prev_cs"] * dh_prev) * cache["ft"] * (1 - cache["ft"])) + # dWf = dft * dft/dWf + gradients['dWf'] += np.dot(dft, concat.T) + # dbf = dft * dft/dbf + gradients['dbf'] += np.sum(dft, axis=1, keepdims=True) + # dh_f = dft * dft/dh_prev + dh_f = np.dot(parameters["Wf"][:, :hidden_dim].T, dft) + return dh_f, gradients +``` + +Define a function to calculate the gradients in the **Input Gate** and **Candidate Memory Gate**: + +```python +def bp_input_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters): + # dit = dL/da2 * da2/dZ2 * dZ2/dh_prev * dh_prev/dc_prev * dc_prev/dit + dit = ((dc_prev * cache["cmt"] + cache["ot"] + * (1 - np.square(np.tanh(cache["next_cs"]))) + * cache["cmt"] * dh_prev) * cache["it"] * (1 - cache["it"])) + # dcmt = dL/da2 * da2/dZ2 * dZ2/dh_prev * dh_prev/dc_prev * dc_prev/dcmt + dcmt = ((dc_prev * cache["it"] + cache["ot"] + * (1 - np.square(np.tanh(cache["next_cs"]))) + * cache["it"] * dh_prev) * (1 - np.square(cache["cmt"]))) + # dWi = dit * dit/dWi + gradients['dWi'] += np.dot(dit, concat.T) + # dWcm = dcmt * dcmt/dWcm + gradients['dWcm'] += np.dot(dcmt, concat.T) + # dbi = dit * dit/dbi + gradients['dbi'] += np.sum(dit, axis=1, keepdims=True) + # dWcm = dcmt * dcmt/dbcm + gradients['dbcm'] += np.sum(dcmt, axis=1, keepdims=True) + # dhi = dit * dit/dh_prev + dh_i = np.dot(parameters["Wi"][:, :hidden_dim].T, dit) + # dhcm = dcmt * dcmt/dh_prev + dh_cm = np.dot(parameters["Wcm"][:, :hidden_dim].T, dcmt) + return dh_i, dh_cm, gradients +``` + +Define a function to calculate the gradients for the **Output Gate**: + +```python +def bp_output_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters): + # dot = dL/da2 * da2/dZ2 * dZ2/dh_prev * dh_prev/dot + dot = (dh_prev * np.tanh(cache["next_cs"]) + * cache["ot"] * (1 - cache["ot"])) + # dWo = dot * dot/dWo + gradients['dWo'] += np.dot(dot, concat.T) + # dbo = dot * dot/dbo + gradients['dbo'] += np.sum(dot, axis=1, keepdims=True) + # dho = dot * dot/dho + dh_o = np.dot(parameters["Wo"][:, :hidden_dim].T, dot) + return dh_o, gradients +``` + +Define a function to calculate the gradients for the **Fully Connected Layer**: + +```python +def bp_fc_layer (target, caches, gradients): + # dZ2 = dL/da2 * da2/dZ2 + predicted = np.array(caches['fc_values'][0]['a2']) + target = np.array(target) + dZ2 = predicted - target + # dW2 = dL/da2 * da2/dZ2 * dZ2/dW2 + last_hs = caches['lstm_values'][-1]["next_hs"] + gradients['dW2'] = np.dot(dZ2, last_hs.T) + # db2 = dL/da2 * da2/dZ2 * dZ2/db2 + gradients['db2'] = np.sum(dZ2) + # dh_last = dZ2 * W2 + W2 = caches['fc_values'][0]["W2"] + dh_last = np.dot(W2.T, dZ2) + return dh_last, gradients +``` + +Put all these functions together to summarize the **Backpropagation** step for our model: + +```python +def backprop(y, caches, hidden_dim, input_dim, time_steps, parameters): + + # Initialize gradients + gradients = initialize_grads(parameters) + + # Calculate gradients for the fully connected layer + dh_last, gradients = bp_fc_layer(target, caches, gradients) + + # Initialize gradients w.r.t previous hidden state and previous cell state + dh_prev = dh_last + dc_prev = np.zeros((dh_prev.shape)) + + # loop back over the whole sequence + for t in reversed(range(time_steps)): + cache = caches['lstm_values'][t] + + # Input to the gates is concatenated previous hidden state and current word embedding + concat = np.concatenate((cache["prev_hs"], cache["xt"]), axis=0) + + # Compute gates related derivatives + # Calculate derivative w.r.t the input and parameters of forget gate + dh_f, gradients = bp_forget_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters) + + # Calculate derivative w.r.t the input and parameters of input gate + dh_i, dh_cm, gradients = bp_input_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters) + + # Calculate derivative w.r.t the input and parameters of output gate + dh_o, gradients = bp_output_gate(hidden_dim, concat, dh_prev, dc_prev, cache, gradients, parameters) + + # Compute derivatives w.r.t prev. hidden state and the prev. cell state + dh_prev = dh_f + dh_i + dh_cm + dh_o + dc_prev = (dc_prev * cache["ft"] + cache["ot"] + * (1 - np.square(np.tanh(cache["next_cs"]))) + * cache["ft"] * dh_prev) + + return gradients +``` + +### Updating the Parameters + +We update the parameters through an optimization algorithm called [Adam](https://optimization.cbe.cornell.edu/index.php?title=Adam) which is an extension to stochastic gradient descent that has recently seen broader adoption for deep learning applications in computer vision and natural language processing. Specifically, the algorithm calculates an exponential moving average of the gradient and the squared gradient, and the parameters `beta1` and `beta2` control the decay rates of these moving averages. Adam has shown increased convergence and robustness over other gradient descent algorithms and is often recommended as the default optimizer for training. + + +Define a function to initialise the moving averages for each parameter + +```python +# initialise the moving averages +def initialise_mav(hidden_dim, input_dim, params): + v = {} + s = {} + # Initialize dictionaries v, s + for key in params: + v['d' + key] = np.zeros(params[key].shape) + s['d' + key] = np.zeros(params[key].shape) + # Return initialised moving averages + return v, s +``` + +Define a function to update the parameters + +```python +# Update the parameters using Adam optimization +def update_parameters(parameters, gradients, v, s, + learning_rate=0.01, beta1=0.9, beta2=0.999): + for key in parameters: + # Moving average of the gradients + v['d' + key] = (beta1 * v['d' + key] + + (1 - beta1) * gradients['d' + key]) + + # Moving average of the squared gradients + s['d' + key] = (beta2 * s['d' + key] + + (1 - beta2) * (gradients['d' + key] ** 2)) + + # Update parameters + parameters[key] = (parameters[key] - learning_rate + * v['d' + key] / np.sqrt(s['d' + key] + 1e-8)) + # Return updated parameters and moving averages + return parameters, v, s +``` + +### Training the Network + + +You will start by initializing all the parameters and hyperparameters being used in your network + +```python +hidden_dim = 64 +input_dim = emb_matrix['memory'].shape[0] +learning_rate = 0.001 +epochs = 10 +parameters = initialise_params(hidden_dim, + input_dim) +v, s = initialise_mav(hidden_dim, + input_dim, + parameters) +``` + +To optimize your deep learning network, you need to calculate a loss based on how well the model is doing on the training data. Loss value implies how poorly or well a model behaves after each iteration of optimization.
+Define a function to calculate the loss using [negative log likelihood](http://d2l.ai/chapter_linear-networks/softmax-regression.html?highlight=negative%20log%20likelihood#log-likelihood) + +```python +def loss_f(A, Y): + # define value of epsilon to prevent zero division error inside a log + epsilon = 1e-5 + # Implement formula for negative log likelihood + loss = (- Y * np.log(A + epsilon) + - (1 - Y) * np.log(1 - A + epsilon)) + # Return loss + return np.squeeze(loss) +``` + +Set up the neural network's learning experiment with a training loop and start the training process. You will also evaluate the model's performance on the training dataset to see how well the model is *learning* and the testing dataset to see how well it is *generalizing*. +>Skip running this cell if you already have the trained parameters stored in a `npy` file + +```python +# To store training losses +training_losses = [] +# To store testing losses +testing_losses = [] + +# This is a training loop. +# Run the learning experiment for a defined number of epochs (iterations). +for epoch in range(epochs): + ################# + # Training step # + ################# + train_j = [] + for sample, target in zip(X_train, y_train): + # split text sample into words/tokens + b = textproc.word_tokeniser(sample) + + # Forward propagation/forward pass: + caches = forward_prop(b, + parameters, + input_dim) + + # Backward propagation/backward pass: + gradients = backprop(target, + caches, + hidden_dim, + input_dim, + len(b), + parameters) + + # Update the weights and biases for the LSTM and fully connected layer + parameters, v, s = update_parameters(parameters, + gradients, + v, + s, + learning_rate=learning_rate, + beta1=0.999, + beta2=0.9) + + # Measure the training error (loss function) between the actual + # sentiment (the truth) and the prediction by the model. + y_pred = caches['fc_values'][0]['a2'][0][0] + loss = loss_f(y_pred, target) + # Store training set losses + train_j.append(loss) + + ################### + # Evaluation step # + ################### + test_j = [] + for sample, target in zip(X_test, y_test): + # split text sample into words/tokens + b = textproc.word_tokeniser(sample) + + # Forward propagation/forward pass: + caches = forward_prop(b, + parameters, + input_dim) + + # Measure the testing error (loss function) between the actual + # sentiment (the truth) and the prediction by the model. + y_pred = caches['fc_values'][0]['a2'][0][0] + loss = loss_f(y_pred, target) + + # Store testing set losses + test_j.append(loss) + + # Calculate average of training and testing losses for one epoch + mean_train_cost = np.mean(train_j) + mean_test_cost = np.mean(test_j) + training_losses.append(mean_train_cost) + testing_losses.append(mean_test_cost) + print('Epoch {} finished. \t Training Loss : {} \t Testing Loss : {}'. + format(epoch + 1, mean_train_cost, mean_test_cost)) + +# save the trained parameters to a npy file +np.save('tutorial-nlp-from-scratch/parameters.npy', parameters) +``` + +It is a good practice to plot the training and testing losses as the learning curves are often helpful in diagnosing the behavior of a Machine Learning model. + +```python +fig = plt.figure() +ax = fig.add_subplot(111) + +# plot the training loss +ax.plot(range(0, len(training_losses)), training_losses, label='training loss') +# plot the testing loss +ax.plot(range(0, len(testing_losses)), testing_losses, label='testing loss') + +# set the x and y labels +ax.set_xlabel("epochs") +ax.set_ylabel("loss") + +plt.legend(title='labels', bbox_to_anchor=(1.0, 1), loc='upper left') +plt.show() +``` + +### Sentiment Analysis on the Speech Data + + +Once your model is trained, you can use the updated parameters to start making our predictions. You can break each speech into paragraphs of uniform size before passing them to the Deep Learning model and predicting the sentiment of each paragraph + +```python +# To store predicted sentiments +predictions = {} + +# define the length of a paragraph +para_len = 100 + +# Retrieve trained values of the parameters +if os.path.isfile('tutorial-nlp-from-scratch/parameters.npy'): + parameters = np.load('tutorial-nlp-from-scratch/parameters.npy', allow_pickle=True).item() + +# This is the prediction loop. +for index, text in enumerate(X_pred): + # split each speech into paragraphs + paras = textproc.text_to_paras(text, para_len) + # To store the network outputs + preds = [] + + for para in paras: + # split text sample into words/tokens + para_tokens = textproc.word_tokeniser(para) + # Forward Propagation + caches = forward_prop(para_tokens, + parameters, + input_dim) + + # Retrieve the output of the fully connected layer + sent_prob = caches['fc_values'][0]['a2'][0][0] + preds.append(sent_prob) + + threshold = 0.5 + preds = np.array(preds) + # Mark all predictions > threshold as positive and < threshold as negative + pos_indices = np.where(preds > threshold) # indices where output > 0.5 + neg_indices = np.where(preds < threshold) # indices where output < 0.5 + # Store predictions and corresponding piece of text + predictions[speakers[index]] = {'pos_paras': paras[pos_indices[0]], + 'neg_paras': paras[neg_indices[0]]} +``` + +Visualizing the sentiment predictions: + +```python +x_axis = [] +data = {'positive sentiment': [], 'negative sentiment': []} +for speaker in predictions: + # The speakers will be used to label the x-axis in our plot + x_axis.append(speaker) + # number of paras with positive sentiment + no_pos_paras = len(predictions[speaker]['pos_paras']) + # number of paras with negative sentiment + no_neg_paras = len(predictions[speaker]['neg_paras']) + # Obtain percentage of paragraphs with positive predicted sentiment + pos_perc = no_pos_paras / (no_pos_paras + no_neg_paras) + # Store positive and negative percentages + data['positive sentiment'].append(pos_perc*100) + data['negative sentiment'].append(100*(1-pos_perc)) + +index = pd.Index(x_axis, name='speaker') +df = pd.DataFrame(data, index=index) +ax = df.plot(kind='bar', stacked=True) +ax.set_ylabel('percentage') +ax.legend(title='labels', bbox_to_anchor=(1, 1), loc='upper left') +plt.show() +``` + +In the plot above, you're shown what percentages of each speech are expected to carry a positive and negative sentiment. Since this implementation prioritized simplicity and clarity over performance, we cannot expect these results to be very accurate. Moreover, while making the sentiment predictions for one paragraph we did not use the neighboring paragraphs for context which would have led to more accurate predictions. We encourage the reader to play around with the model and make some tweaks suggested in `Next Steps` and observe how the model performance changes. + + +## Looking at our Neural Network from an ethical perspective + + +It's crucial to understand that accurately identifying a text's sentiment is not easy primarily because of the complex ways in which humans express sentiment, using irony, sarcasm, humor, or, in social media, abbreviation. Moreover neatly placing text into two categories: 'positive' and 'negative' can be problematic because it is being done without any context. Words or abbreviations can convey very different sentiments depending on age and location, none of which we took into account while building our model. + +Along with data, there are also growing concerns that data processing algorithms are influencing policy and daily lives in ways that are not transparent and introduce biases. Certain biases such as the [Inductive Bias](https://bit.ly/2WtTKIe) are essential to help a Machine Learning model generalize better, for example the LSTM we built earlier is biased towards preserving contextual information over long sequences which makes it so suitable for processing sequential data. The problem arises when [societal biases](https://hbr.org/2019/10/what-do-we-do-about-the-biases-in-ai) creep into algorithmic predictions. Optimizing Machine algorithms via methods like [hyperparameter tuning](https://en.wikipedia.org/wiki/Hyperparameter_optimization) can then further amplify these biases by learning every bit of information in the data. + + +There are also cases where bias is only in the output and not the inputs (data, algorithm). For example, in sentiment analysis [accuracy tends to be higher on female-authored texts than on male-authored ones]( https://doi.org/10.3390/electronics9020374). End users of sentiment analysis should be aware that its small gender biases can affect the conclusions drawn from it and apply correction factors when necessary. Hence, it is important that demands for algorithmic accountability should include the ability to test the outputs of a system, including the ability to drill down into different user groups by gender, ethnicity and other characteristics, to identify, and hopefully suggest corrections for, system output biases. + + +## Next Steps + + +You have learned how to build and train a simple Long Short Term Memory network from scratch using just NumPy to perform sentiment analysis. + +To further enhance and optimize your neural network model, you can consider one of a mixture of the following: + +- Alter the architecture by introducing multiple LSTM layers to make the network deeper. +- Use a higher epoch size to train longer and add more regularization techniques, such as early stopping, to prevent overfitting. +- Introduce a validation set for an unbiased evaluation of the model fit. +- Apply batch normalization for faster and more stable training. +- Tune other parameters, such as the learning rate and hidden layer size. +- Initialize weights using [Xavier Initialization](https://d2l.ai/chapter_multilayer-perceptrons/numerical-stability-and-init.html#xavier-initialization) to prevent vanishing/exploding gradients instead of initializing them randomly. +- Replace LSTM with a [Bidirectional LSTM](https://en.wikipedia.org/wiki/Bidirectional_recurrent_neural_networks) to use both left and right context for predicting sentiment. + +Nowadays, LSTMs have been replaced by the [Transformer](https://jalammar.github.io/illustrated-transformer/) which uses [Attention](https://jalammar.github.io/visualizing-neural-machine-translation-mechanics-of-seq2seq-models-with-attention/) to tackle all the problems that plague an LSTM such as lack of [transfer learning](https://en.wikipedia.org/wiki/Transfer_learning), lack of [parallel training](https://web.stanford.edu/~rezab/classes/cme323/S16/projects_reports/hedge_usmani.pdf), and a long gradient chain for lengthy sequences. + +Building a neural network from scratch with NumPy is a great way to learn more about NumPy and about deep learning. However, for real-world applications you should use specialized frameworks — such as PyTorch, JAX or TensorFlow — that provide NumPy-like APIs, have built-in automatic differentiation and GPU support, and are designed for high-performance numerical computing and machine learning. + +Finally, to know more about how ethics come into play when developing a machine learning model, you can refer to the following resources : +- [Data ethics resources](https://www.turing.ac.uk/research/data-ethics) by the Turing Institute +- Considering how artificial intelligence shifts power, an [article](https://www.nature.com/articles/d41586-020-02003-2) and [talk](https://slideslive.com/38923453/the-values-of-machine-learning) by Pratyusha Kalluri +- More ethics resources on [this blog post](https://www.fast.ai/2018/09/24/ai-ethics-resources/) by Rachel Thomas and the [Radical AI podcast](https://www.radicalai.org/) diff --git a/content/tutorial-nlp-from-scratch/README.md b/content/tutorial-nlp-from-scratch/README.md new file mode 100644 index 00000000..67bffe7b --- /dev/null +++ b/content/tutorial-nlp-from-scratch/README.md @@ -0,0 +1,68 @@ +# Data used for building the [NLP from scratch tutorial](https://github.com/Dbhasin1/numpy-tutorials/blob/ethics-tutorial/content/tutorial-nlp-from-scratch.md) + +## [IMDb Reviews Dataset](https://github.com/Dbhasin1/numpy-tutorials/blob/ethics-tutorial/content/tutorial-nlp-from-scratch/IMDB%20Dataset.csv) + +**Purpose**: Training the Deep Learning model + +> Information courtesy of +IMDb +(http://www.imdb.com). +Used with permission. + +IMDB Reviews Dataset is a large movie review dataset collected and prepared by +Andrew L. Maas from the popular movie rating service, IMDB. The IMDB Reviews +dataset is used for binary sentiment classification, whether a review is +positive or negative. It contains 25,000 movie reviews for training and 25,000 +for testing. All these 50,000 reviews are labeled data that may be used for +supervised deep learning. For ease of reproducibility, we'll be sourcing the +data from [Zenodo](https://zenodo.org/record/4117827#.YVQZ_EZBy3Ihttps://zenodo.org/record/4117827#.YVQZ_EZBy3I). + +> Andrea Esuli, Alejandro Moreo, & Fabrizio Sebastiani. (2020). Sentiment +Quantification Datasets [Data set]. Zenodo. +https://doi.org/10.5281/zenodo.4117827 + +--- + +## [Glove Embeddings](https://github.com/Dbhasin1/numpy-tutorials/blob/ethics-tutorial/content/tutorial-nlp-from-scratch/glove.6B.50d.txt) + +**Purpose**: To represent text data in machine-readable i.e numeric format +> Jeffrey Pennington, Richard Socher, and Christopher D. Manning. 2014. +[GloVe: Global Vectors for Word Representation](https://nlp.stanford.edu/pubs/glove.pdf) + +GloVe is an unsupervised algorithm developed for generating word embeddings by +generating global word-word co-occurence matrix from a corpus. You can download +the zipped files containing the embeddings from +https://nlp.stanford.edu/projects/glove/. +Here you can choose any of the four options for different sizes or training +datasets, we opted for the least resource-heavy file with 50 dimensional +representations for each word. + +--- + +## [Speech Dataset](https://github.com/Dbhasin1/numpy-tutorials/blob/ethics-tutorial/content/tutorial-nlp-from-scratch/speeches.csv) + +**Purpose**: The trained Deep Learning Model will perform sentiment analysis on +this data +> Curated by the authors of the tutorial + +We have chosen speeches by activists around the globe talking about issues like +climate change, feminism, lgbtqa+ rights and racism. These were sourced from +newspapers, the official website of the United Nations and the archives of +established universities as cited in the table below. A CSV file was created +containing the transcribed speeches, their speaker and the source the speeches +were obtained from. +We made sure to include different demographics in our data and included a range +of different topics, most of which focus on social and/or ethical issues. The +dataset is subjected to the CC0 Creative Common License, which means that is +free for the public to use and there are no copyrights reserved. + +| Speech | Speaker | Source | +|--------------------------------------------------|-------------------------|------------------------------------------------------------| +| Barnard College Commencement | Leymah Gbowee | [Barnard College](https://barnard.edu/news/transcript-speech-nobel-peace-prize-winner-leymah-gbowee) | +| UN Speech on youth Education | Malala Yousafzai | [The Guardian](https://www.theguardian.com/commentisfree/2013/jul/12/malala-yousafzai-united-nations-education-speech-text) | +| Remarks in the UNGA on racial discrimination | Linda Thomas Greenfield | [United States mission to the United Nation](https://usun.usmission.gov/remarks-by-ambassador-linda-thomas-greenfield-at-a-un-general-assembly-commemorative-meeting-for-intl-day-for-the-elimination-of-racial-discrimination/) | +| How Dare You | Greta Thunberg | [NBC](https://www.nbcnews.com/news/world/read-greta-thunberg-s-full-speech-united-nations-climate-action-n1057861) | +| The speech that silenced the world for 5 minutes | Severn Suzuki | [Earth Charter](https://earthcharter.org/new-voices-after-26-years-of-the-girl-who-silenced-the-world-for-5-minutes/) | +| The Hope Speech | Harvey Milk | [Museum of Fine Arts, Boston](https://www.mfa.org/exhibitions/amalia-pica/transcript-harvey-milks-the-hope-speech) | +| Speech at the time to Thrive Conference | Ellen Page | [Huffpost](https://www.huffpost.com/entry/time-to-thrive_b_4794251) | +| I have a dream | Martin Luther King | [Marshall University](https://www.marshall.edu/onemarshallu/i-have-a-dream/) | diff --git a/content/tutorial-nlp-from-scratch/dl_architectures.jpg b/content/tutorial-nlp-from-scratch/dl_architectures.jpg new file mode 100644 index 00000000..f9c07677 Binary files /dev/null and b/content/tutorial-nlp-from-scratch/dl_architectures.jpg differ diff --git a/content/tutorial-nlp-from-scratch/speeches.csv b/content/tutorial-nlp-from-scratch/speeches.csv new file mode 100644 index 00000000..3e4734e2 --- /dev/null +++ b/content/tutorial-nlp-from-scratch/speeches.csv @@ -0,0 +1,113 @@ +speaker,speech,source +Greta Thunberg,"""My message is that we'll be watching you. This is all wrong. I shouldn't be up here. I should be back in school on the other side of the ocean. Yet you all come to us young people for hope. How dare you! ""You have stolen my dreams and my childhood with your empty words. And yet I'm one of the lucky ones. People are suÔ¨Äering. People are dying. Entire ecosystems are collapsing. We are in the beginning of a mass extinction, and all you can talk about is money and fairy tales of eternal economic growth. How dare you! ""For more than 30 years, the science has been crystal clear. How dare you continue to look away and come here saying that you're doing enough, when the politics and solutions needed are still nowhere in sight. ""You say you hear us and that you understand the urgency. But no matter how sad and angry I am, I do not want to believe that. Because if you really understood the situation and still kept on failing to act, then you would be evil. And that I refuse to believe. ""The popular idea of cutting our emissions in half in 10 years only gives us a 50% chance of staying below 1.5¬∞C, and the risk of setting off irreversible chain reactions beyond human control. ""Fifty percent may be acceptable to you. But those numbers do not include tipping points, most feedback loops, additional warming hidden by toxic air pollution or the aspects of equity and climate justice. They also rely on my generation sucking hundreds of billions of tons of your CO2 out of the air with technologies that barely exist. ""So a 50% risk is simply not acceptable to us ‚Äî we who have to live with the consequences. ""To have a 67% chance of staying below a 1.5¬∞C global temperature rise ‚Äì the best odds given by the [Intergovernmental Panel on Climate Change] ‚Äì the world had 420 gigatons of CO2 left to emit back on January 1st, 2018. Today that figure is already down to less than 350 gigatons. ""How dare you pretend that this can be solved with just 'business as usual' and some technical solutions? With today's emissions levels, that remaining CO2 budget will be entirely gone within less than 8 1/2 years. ""There will not be any solutions or plans presented in line with these figures here today, because these numbers are too uncomfortable. And you are still not mature enough to tell it like it is. ""You are failing us. But young people are starting to understand your betrayal. The eyes of all future generations are upon you. And if you choose to fail us, I say: We will never forgive you. ""We will not let you get away with this. Right here, right now is where we draw the line. The world is waking up. And change is coming, whether you like it or not. ""Thank you.""",NBC official website +Severn Suzuki,"Hello, I'm Severn Suzuki speaking for ""ECO"" -- the Environmental Children‚Äôs Organization. We are a group of 12 and 13 year-olds trying to make a difference: Vanessa Suttie, Morgan Geisler, Michelle Quigg, and me. We‚Äôve raised all the money to come here ourselves -- to come 5,000 miles to tell you adults you must change your ways. Coming up here today, I have no hidden agenda. I am fighting for my future. Losing my future is not like losing an election, or a few points on the stock market. I am here to speak for all generations to come. I am here to speak -- speak on behalf of the starving children around the world whose cries go unheard. I am here to speak for the countless animals dying across this planet, because they have nowhere left to go. I am afraid to go out in the sun now, because of the holes in our ozone. I am afraid to breathe the air, because I don‚Äôt know what chemicals are in it. I used to go in -- I used to go fishing in Vancouver, my home, with my Dad until, just a few years ago, we found the fish full of cancers. And now we hear of animals and plants going extinct every day, vanishing forever. In my life, I have dreamt of seeing the great herds of wild animals, jungles, and rainforests full of birds and butterflies, but now I wonder if they will even exist for my children to see. Did you have to worry of these things when you were my age? All this is happening before our eyes and yet we act as if we have all the time we want and all the solutions. I‚Äôm only a child and I don‚Äôt have all the solutions. I don't -- I want you to realize, neither do you. You don‚Äôt know how to fix the holes in our ozone layer. You don‚Äôt know how to bring the salmon back up in a dead stream. You don‚Äôt know how to bring back an animal now extinct. And you can‚Äôt bring back the forests that once grew where there is now a desert. If you don‚Äôt know how to fix it, please stop breaking it. Here, you may be delegates of your governments, business people, organizers, reporters, or politicians. But, really, you are mothers and fathers, sisters and brothers, aunts and uncles -- and all of you are someone‚Äôs child. I‚Äôm only a child, yet I know we are all part of a family -- five billion strong; in fact 30 million species strong -and borders and governments will never change that. I‚Äôm only a child, yet I know we are all in this together and should act as one single world towards one single goal. But, really, you are mothers and fathers, sisters and brothers, aunts and uncles -- and all of you are someone‚Äôs child. I‚Äôm only a child, yet I know we are all part of a family -- five billion strong; in fact 30 million species strong -and borders and governments will never change that. I‚Äôm only a child, yet I know we are all in this together and should act as one single world towards one single goal. In -- In my anger, I'm not blind; and in my fear, I'm not afraid of telling the world how I feel. In my country we make so much waste, we buy and throw away, buy and throw away, buy and throw away and yet Northern countries will not share with the needy. Even when we have more than enough we are afraid to share; we are afraid to let go of some of our wealth. In Canada, we live the privileged life. We‚Äôve plenty of food, water, and shelter. We have watches, bicycles, computers, and television sets. The list could go on for two days. Two days ago, here in Brazil, we were shocked when we spent time with some children living on the streets. This is what one child told us: ""I wish I was rich and if I were, I would give all the street children food, clothes, medicines, shelter, and love and affection."" If a child on the streets who has nothing is willing to share, why are we who have everything still so greedy? I can‚Äôt stop thinking that these are children my own age, that it makes a tremendous difference where you are born; that I could be one of those children living in the favelas of Rio. I could be a child starving in Somalia, or a victim of war in the Middle East, or a beggar in India. I am only a child, yet I know if all the money spent on war was spent on finding environmental answers ending poverty and in finding treaties, what a wonderful place this Earth would be. At school, even in kindergarten, you teach us how to behave in the world. You teach us to not to fight with others, to work things out, to respect others, to clean up our mess, not to hurt other creatures, to share, not be greedy. Then, why do you go out and do -- do the things you tell us not to do? Do not forget why you are attending these conferences -- who you're doing this At school, even in kindergarten, you teach us how to behave in the world. You teach us to not to fight with others, to work things out, to respect others, to clean up our mess, not to hurt other creatures, to share, not be greedy. Then, why do you go out and do -- do the things you tell us not to do? Do not forget why you are attending these conferences -- who you're doing this for. We are your own children. You are deciding what kind of a world we are growing up in. Parents should be able to comfort their children by saying, ""Everything's going to be all right; it‚Äôs not the end of the world, and we're -- and we're doing the best we can."" But I don‚Äôt think you can say that to us anymore. Are we even on your list of priorities? My dad always says, ""You are what you do, not what you say."" Well, what you do makes me cry at night. You grown-ups say you love us. But I challenge you, please, make your actions reflect your words. Thank you.",NTU blogs +Martin Luther King,"I am happy to join with you today in what will go down in history as the greatest demonstration for freedom in the history of our nation. Five score years ago a great American in whose symbolic shadow we stand today signed the Emancipation Proclamation. This momentous decree is a great beacon light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of their captivity. But 100 years later the Negro still is not free. One hundred years later the life of the Negro is still badly crippled by the manacles of segregation and the chains of discrimination. One hundred years later the Negro lives on a lonely island of poverty in the midst of a vast ocean of material prosperity. One hundred years later the Negro is still languished in the corners of American society and finds himself in exile in his own land. So we‚Äôve come here today to dramatize a shameful condition. In a sense we‚Äôve come to our nation‚Äôs capital to cash a check. When the architects of our Republic wrote the magnificent words of the Constitution and the Declaration of Independence, they were signing a promissory note to which every American was to fall heir. This note was a promise that all men‚Äîyes, black men as well as white men‚Äîwould be guaranteed the unalienable rights of life, liberty and the pursuit of happiness. . . . We must forever conduct our struggle on the high plane of dignity and discipline. We must not allow our creative protests to degenerate into physical violence. . . . The marvelous new militancy which has engulfed the Negro community must not lead us to distrust all white people, for many of our white brothers, as evidenced by their presence here today, have come to realize that their destiny is tied up with our destiny. . . . We cannot walk alone. And as we walk we must make the pledge that we shall always march ahead. We cannot turn back. There are those who are asking the devotees of civil rights, ‚ÄúWhen will you be satisfied?‚Äù We can never be satisfied as long as the Negro is the victim of the unspeakable horrors of police brutality. We can never be satisfied as long as our bodies, heavy with the fatigue of travel, cannot gain lodging in the motels of the highways and the hotels of the cities. We cannot be satisfied as long as the Negro‚Äôs basic mobility is from a smaller ghetto to a larger one. We can never be satisfied as long as our children are stripped of their adulthood and robbed of their dignity by signs stating ‚ÄúFor Whites Only.‚Äù We cannot be satisfied as long as the Negro in Mississippi cannot vote and the Negro in New York believes he has nothing for which to vote. No, no, we are not satisfied, and we will not be satisfied until justice rolls down like waters and righteousness like a mighty stream. . . . I say to you today, my friends, though, even though we face the difficulties of today and tomorrow, I still ¬©2014 The Gilder Lehrman Institute of American History www.gilderlehrman.org have a dream. It is a dream deeply rooted in the American dream. I have a dream that one day this nation will rise up, live out the true meaning of its creed: ‚ÄúWe hold these truths to be self-evident, that all men are created equal.‚Äù I have a dream that one day on the red hills of Georgia sons of former slaves and the sons of former slave-owners will be able to sit down together at the table of brotherhood. I have a dream that one day even the state of Mississippi, a state sweltering with the heat of injustice, sweltering with the heat of oppression, will be transformed into an oasis of freedom and justice. I have a dream that my four little children will one day live in a nation where they will not be judged by the color of their skin but by the content of their character. I have a dream . . . I have a dream that one day in Alabama, with its vicious racists, with its governor having his lips dripping with the words of interposition and nullification, one day right there in Alabama little black boys and black girls will be able to join hands with little white boys and white girls as sisters and brothers. I have a dream today . . . This will be the day when all of God‚Äôs children will be able to sing with new meaning. ‚ÄúMy country, ‚Äôtis of thee, sweet land of liberty, of thee I sing. Land where my fathers died, land of the pilgrim‚Äôs pride, from every mountain side, let freedom ring.‚Äù And if America is to be a great nation, this must become true. So let freedom ring from the prodigious hilltops of New Hampshire. Let freedom ring from the mighty mountains of New York. Let freedom ring from the heightening Alleghenies of Pennsylvania. Let freedom ring from the snowcapped Rockies of Colorado. Let freedom ring from the curvaceous slopes of California. But not only that. Let freedom ring from Stone Mountain of Georgia. Let freedom ring from Lookout Mountain of Tennessee. Let freedom ring from every hill and molehill of Mississippi, from every mountain side. Let freedom ring . . . When we allow freedom to ring‚Äîwhen we let it ring from every city and every hamlet, from every state and every city, we will be able to speed up that day when all of God‚Äôs children, black men and white men, Jews and Gentiles, Protestants and Catholics, will be able to join hands and sing in the words of the old Negro spiritual, ‚ÄúFree at last, Free at last, Great God amighty, We are free at last.‚Äù Reprinted by arrangement with The Heirs to the Estate of Martin Luther King Jr., c/ o Writers House as the proprietor New York, NY. Copyright: ¬© 1963 Dr. Martin Luther King Jr. ¬© renewed 1991 Coretta Scott King.",Brittanica official website +Harvey Milk,"About six months ago, Anita Bryant in her speaking to God said that the drought in California was because of the gay people. On November 9, the day after I got elected, it started to rain. On the day I got sworn in, we walked to City Hall and it was kind of nice, and as soon as I said the word ""I do,"" it started to rain again. It's been raining since then and the people of San Francisco figure the only way to stop it is to do a recall petition. So much for that. Why are we here? Why are gay people here? And what's happening? Let's look at 1977. In 1977, gay people had their rights taken away from them in Miami. But you must remember that in the week before Miami and the week after that, the word homosexual or gay appeared in every single newspaper in this nation in articles both pro and con. In every radio station, in every TV station and every household. For the first time in the history of the world, everybody was talking about it, good or bad. Unless you have dialogue, unless you open the walls of dialogue, you can never reach to change people's opinion. Once you have dialogue starting, you know you can break down prejudice. In 1977 we saw a dialogue start. In 1977, we saw a gay person elected in San Francisco. What that is, is a record of what happened last year. What we must do is make sure that 1978 continues the movement. I know we are pressed for time so I'm going to cover just one more little point. That is to understand why it is important that gay people run for office and that gay people get elected. I know there are many people in this room who are running for central committee who are gay. I encourage you. There's a major reason why. If my non-gay friends and supporters in this room understand it, they'll probably understand why I've run so often before I finally made it. You see there is a major difference ‚Äì and it remains a vital difference ‚Äì between a friend and a gay person, a friend in office and a gay person in office. Gay people have been slandered nationwide. We've been tarred and we've been brushed with the picture of pornography. In Dade County, we were accused of child molestation. It's not enough anymore just to have friends represent us. No matter how good that friend may be. The black community made up its mind to that a long time ago. That the myths against blacks can only be dispelled by electing black leaders, so the black community could be judged by the leaders and not by the myths or black criminals. The Spanish community must not be judged by Latin criminals or myths. The Asian community must not be judged by Asian criminals or myths. The Italian community must not be judged by the mafia, myths. And the time has come when the gay community must not be judged by our criminals and myths. Like every other group, we must be judged by our leaders and by those who are themselves gay, those who are visible. For invisible, we remain in limbo - a myth, a person with no parents, no brothers, no sisters, no friends who are straight, no important positions in employment. A tenth of the nation supposedly composed of stereotypes and would-be seducers of children ‚Äì and no offense meant to the stereotypes. But today, the black community is not judged by its friends, but by its black legislators and leaders. And we must give people the chance to judge us by our leaders and legislators. A gay person in office can set a tone, can command respect not only from the larger community, but from the young people in our own community who need both examples and hope. The first gay people we elect must be strong. They must not be content to sit in the back of the bus. They must not be content to accept pabulum. They must be above wheeling and dealing. They must be ‚Äì for the good of all of us ‚Äì independent, unbought. The anger and the frustrations that some of us feel is because we are misunderstood, and friends can't feel the anger and frustration. They can sense it in us, but they can't feel it. Because a friend has never gone through what is known as coming out. I will never forget what it was like coming out and having nobody to look up toward. I remember the lack of hope - and our friends can't fulfil it. I can't forget the looks on faces of people who've lost hope. Be they gay, be they seniors, be they blacks looking for an almostimpossible job, be they Latins trying to explain their problems and aspirations in a tongue that's foreign to them. I personally will never forget that people are more important than buildings. I use the word ""I"" because I'm proud. I stand here tonight in front of my gay sisters, brothers and friends because I'm proud of you. I think it's time that we have many legislators who are gay and proud of that fact and do not have to remain in the closet. I think that a gay person, up-front, will not walk away from a responsibility and be afraid of being tossed out of office. After Dade County, I walked among the angry and the frustrated night after night and I looked at their faces. And in San Francisco, three days before Gay Pride Day, a person was killed just because he was gay. And that night, I walked among the sad and the frustrated at City Hall in San Francisco and later that night as they lit candles on Castro Street and stood in silence, reaching out for some symbolic thing that would give them hope. These were strong people, whose faces I knew from the shop, the streets, meetings and people who I never saw before but I knew. They were strong, but even they needed hope. And the young gay people who are coming out and hear Anita Bryant on television and her story. The only thing they have to look forward to is hope. And you have to give them hope. Hope for a better world, hope for a better tomorrow, hope for a better place to come to if the pressures at home are too great. Hope that all will be all right. Without hope, not only gays, but the blacks, the seniors, the handicapped, the us'es, the us'es will give up. And if you help elect to the central committee and other offices, more gay people, that gives a green light to all who feel disenfranchised, a green light to move forward. It means hope to a nation that has given up, because if a gay person makes it, the doors are open to everyone. So if there is a message I have to give, it is that I've found one overriding thing about my personal election, it's the fact that if a gay person can be elected, it's a green light. And you and you and you, you have to give people hope.",University of Maryland archives +Leymah Gbowee,"Thank you. Please have your seats. Someone once told me, the kids in America are born with whistles in their bellies. There is nowhere in the world that girls can scream like America. Thank you, President Spar. This is truly an honor. President Spar, Provost Bell, Board Chair Caruso, Dean Hinkson, faculty, student body, special guests, proud parents, distinguished ladies and gentleman, I‚Äôm honored to be here today at your 2013 Commencement. To God be the glory for another wonderful rainy day. My sisters sometimes say to me, I have some tendency that is a little bit leaning towards crazy. So, I read stuff. People do not go on websites and read negative things except they have a little mental issue. So, as I was preparing for this commencement, something took me to Barnard website. And there was this article, ‚ÄúWhy Leymah Gbowee Commencement Speaker?‚Äù And then after reading part of the article, I usually would just skip through and go down to the comments. Trust me, you all did well, as compared to some of the sites that I go on. But one of the comments that I like, because this site is BW-O-G, and it said, ‚ÄúHow awesome,‚Äù that was the comment, ‚Äúfor a G-B-O-W-E-E, to be speaking at Barnard, on, and then we‚Äôre talking about her on this site, B-W-O-G. So, if you switch it around, except for the W-E that is my last name, but you were very nice to me. I have been asked to send you off with some words of wisdom. I‚Äôll do my best on the wisdom part. Words you will definitely get. I ask you graduates to kindly focus for a moment, forget the parties afterwards. Forget the presents that are awaiting you out there, and just journey with me, briefly, on the term, ‚ÄúStep out of the shadows.‚Äù And most times when I‚Äôm speaking at commencements or speaking with girls or women, I tend to put on something that will cause you ‚Äì even if you forgot what I said, to remember me. Unfortunately, today, I don‚Äôt have one of my big head gears that will make you remember me, but please try to remember my pretty 41-year-old face. And I‚Äôm donning and 18-year old hair style. So if you forget anything I say, don‚Äôt forget, she had a hairstyle like her daughter. Many years ago, I met an old woman. Her name was Krubo Pewee. She was quite poor, and lived in a shanty rundown home, but she had an air of confidence and independence. She walked with her shoulders up. Curiosity actually led me to seek this woman out. Every time I visited her, I would leave her some cash for food and medication, pitying her condition. She always hesitated taking the money from me. I would have to urge her before she reached out to take. One day, after several months of visitation and friendship, I handed her some money, and she said, thank you, but no thanks. She said, Leymah, I‚Äôm not one of those people to take money or to always take from people. I like giving back when I take. I‚Äôm a business woman. I love to watch my money grow, and I love to serve people through my business. If you want to do me a favor, give me a loan, so that I can restart my business. I asked her how much do you want? She said, 200 US dollars. In Liberian money, that is about $14,000. I took $250 and gave to her. Six months later, I went back to her tiny village. I saw a large kiosk, like a shop, rice, vegetables, and other provisions. I was shocked, but elated at the same time. She was more talkative, more relaxed, and we went on chatting about different things. As we talked, she asked about my children. And I told her about the headache of children being far away in school, and having to send money from Africa to the US, and she said ‚Äì I did that too. Of course I was shocked. You send money to the US? She said, yes. In the early 70s, my brother got a scholarship as an aircraft maintenance engineer from Liberia. And this scholarship only paid his fees. So, I had to send him money every month. So, I used to go and do bank drafts. Those were the days long before Western Unions or Money Grams. We talked about different things, and she revealed to me that from that kiosk, the previous one she had was what she used to educate that engineer, an IT consultant, a professional nurse, a community activist, and many more children of her relatives, siblings, and her own children. Again, I was shocked. Here is this woman, poor, sad, living in a shanty home, talking about all of these great people that she had educated. But as we continued the conversation, I said, but you‚Äôve done well to do all of this, and she would not for one moment take any credit for educating those individuals. She referred to herself as a shadow. A shadow, what the shadow does, according to her, is accompany you. It is never active. It doesn‚Äôt feed or clothe you. I told myself, a concept of her role in these people‚Äôs lives was wrong, but who was I to argue with a 76-year-old woman? Shadow does nothing. And as I drove away from that place, I kept thinking about how she referred to herself. And it dawned on me that this is how all over the world, women think. They do a lot of the work, but they never really take any credit for what they do. Their roles in the success or the successes of all of the different things, they always try to keep in the shadows. Growing up, most times as young women and as girls, regardless of where you come from we are socialized as women to be humble. In very extreme cases, be seen and never heard. In some cases, walk on tiptoes. For many years, I heard the phrase, ‚ÄúAct like a lady.‚Äù To sum it all up, we are expected to live our lives in the shadows, but we are also told to contribute our quota to the growth and development of the world. I have a four-year-old who is going on 55, and she constantly comes back from my parents‚Äô house, and says, Momma, Grandma said, ‚ÄúGirls don‚Äôt jump up and down.‚Äù And then I say to her, ‚ÄúMok, Momma says, jump up and down as much as you want!‚Äù Grandma says, ‚ÄúGood girls should read their books and be quite.‚Äù And then I say, ‚ÄúMok Momma says, good girls should read their books and tell the world what they‚Äôve read.‚Äù The contradictions of our lives as women, is confusing for me as an activist, sometimes. Sometimes, it‚Äôs enraging, and other times, it‚Äôs a little bit entertaining. A few months ago, I dared to speak up against the current regime. One of my uncles is a minister in this current regime. And he called my dad, and this is the entertaining part. Why can‚Äôt you control your daughter? And my dad said to him, ‚ÄúShe‚Äôs your niece. You go and control her.‚Äù But between the two men who was supposed to be controlling me, no one dare come to control me. We are told, for those of us who frequent international conferences and meetings, this is the decade of the women. This is followed by local and international proclamations on the rights of women and girls. These proclamations, in my opinion, are made to get us to put our best foot forward; get our brains working, and other instances get our well-manicured nails dirty. However, we‚Äôve seen also many examples of the reality of our situation. For in this country, women can join the military, but until recently, could not engage in active combat. My interpretation was that we are not to be put up front. Our roles are to be positioned, uniquely, in the shadows. In many other part of the world, including my own country Liberia, it is a struggle to convince fathers, and sometimes mothers that their daughters are worthy of being in school, and not in the shadows of the home. The story of Malala took the world by storm. This is another example. In college, many of you spend four years, especially in a women's college, listening to the rhetoric of the world, rhetoric that we hear at all international meetings about women's roles, responsibilities, and rights. The real world, ladies, will teach you as it is still teaching me that it will never be handed down to you on flower beds of ease as my mother called it, or on a silver platter. You have to challenge, in most cases, keep your hand up, in other cases, and in some cases, break protocol if you are to step out of the shadows. You were also taught some of the stories of great women, women who have left great legacies, Harriet Tubman enslaved, mildly epileptic, Black, and a woman. Those were all qualities, and reasons for her to remain in the shadows. She refused to do so. She engaged one cause after the other. Susan B. Anthony, women's rights activist, freedom fighter, she refused to be in the shadows. She spoke up in her lifetime about the inequalities between men and women, and freedom for those enslaved. Her earlier fear of public speaking never hindered her from stepping out of the shadows. These are just two examples of women of old in your context. Today there are many more that we could cite. The lessons these women have taught, and are still teaching us is that we must learn, decide, and fight to break out of the shadows; break out about your pains. I just came back from Libya where I heard horrid stories, horrible stories about rape and abuse during the revolution, and I was told the story of this young lady who was brutally raped. Her brothers locked her up, and because for them, her pain is to be kept in the shadows of their home, she broke free; ran away. They tracked her down, and killed her because she was to remain in the shadows. We went to this huge conference, and one of those young women who have also been in the shadows stepped out, and said, I want to speak about my rape. She came, covered in black, standing in that room that I called 98.2% of men, and told her story of how she was kept in a room with 80 other women raped daily, abused daily. The men in that room hung their head. I stood up, and applauded her because she refused to stay in the shadows of her pains. Don't stay in the shadows. Refuse to stay in the shadow. Break out about your dreams. Break out about your passion that you have for changing the world. Break out about how you feel about things. Never hold back. Refuse to be in the shadows as you step out into this life. Don't be shy no matter how crazy it seems to you. That crazy idea may just be the solution for some crazy global or local problem. From 1989 until 2003, the women of Liberia were also in the shadows. However, in 2003, tired of being used, and misused by over-drug militias, we stepped out to front the demons of militarism and violence. We refused to allow our bodies to be used anymore. We knew we would die, but we refused to allow our legacies to be ‚Äúthey died without trying.‚Äù We stepped out of the darkness of victimization, and into the light of activism and peace. We changed the global perception of Liberia being The Land of Child Soldiers to being The Land of Women in White. Today, the peace that we strived for in Liberia has been translated into many empowerment, and refusal to be seen, and not heard. Community women are demanding their rights, demanding justice for perpetrators of crimes against women, and demanding the provisions of basic social services. We, as women of Liberia, are also demanding recognition for our contributions to the growth and development of our nation. Sheryl Sandberg, a good friend, and someone who I stand behind because she came ahead of me to Barnard writes in her book, Lean In, that women should step out, and unashamedly claim their spaces in their professional career striving to be out and on top. This, my dear ladies, can only happen if you step out of the shadows. I received a t-shirt once that read, ""Good girls never make history."" I love it because it encourages me to remain in the light, and never step back into the shadows. So, I started with the story of Krubo Peewee in August of 2013, one of those she educated died, the aviation engineer. I accompanied her to the family meeting planning the burial. The entire time no one acknowledged her, or recognized her. She sat in the back of the meeting sobbing quietly still hiding in the shadows somewhat hopeful that someone will recognize the role she played in this man's life. It never happened. On the day of the funeral, I went along with her. We sat in the church, and one-after-the-other people came, and paid tribute, and attributed his successes to one thing or the other; never the poor woman in the shanty run-down house. Finally, the pastor announced, if there were no more tributes, they will continue with the other aspects of the program. I was sitting, and screaming in my head, go for it, Krubo! Stand up. Say something. Step out of the shadows. And, as if she could hear my mental scream, she stood up, straightened her shoulders, and walked up to the podium. Here lies a man I saw so much ability in. I live my life through him. I did not go to school because our parents married me off early. And, because I could make money, I sent him to school, and she went on to talk about her brother, and everything she did. Afterwards, she turned to his children and his widow, and she said to them, ‚ÄúIt's always good to recognize someone, anyone, regardless of their physical appearance when they have contributed to your success.‚Äù As she walked out of the church, I followed and went, yes! Distinguished graduates, as you journey through life, refuse to hide. Each and every one of you has unique skills and qualities that the world needs. Being in the shadow will continue to keep our dark world, darker. If all of you decide, or decided that this life you will step out, and do exactly what we need to do, you'll make the world a better place. Like Krubo Peewee, you may be forced to step out of the shadows. No matter how you decide to do so, always remember that stepping out of the shadows will ensure, your stepping out, will ensure that some girl will also find the strength to step out. Many years ago, I made that decision. Four children, dirt broke, dirt poor, only two underwear, until today, I am traumatized, so I buy underwear like a crazy person. I have to say that. Dirt poor, I went back to school, and I sat in my college classroom for three months, and never said a word. Every time someone raised their hand, and said something, I said to myself, I could have said it better. On this fateful day, I got this philosophy assignment, and I put my all into that assignment, went back, and presented my papers, psychology; not philosophy, went back, presented my paper to my professor, and when he brought it, I had an F. I looked at the paper, and something was telling me step out of the shadows. As long as you remain in the shadows, you will continue to receive F. I sat there, looked at that paper, looked, and thought, and looked, and thought, and mustered the courage; mustered the bravery. After class, walked up to the professor sweating like a goat during wintertime, sweating, really sweating profusely, shaking like a leaf, and I said to him, ‚ÄúSir, you miss-graded my paper.‚Äù He looked at me with a stern face, and said, because this is my first time speaking to this man in three months, ‚ÄúAre you sure‚Äù? And, I said, ‚ÄúYes.‚Äù I feel because I have never spoken up in class, you give me an F; you give me an F without reading my paper. And then, he took it away from me, and said, if, and only in Africa the professor will do that, if you're telling a lie, you will be in trouble with me, and the only thing that rang in my head, he who is down, fear no fall. He went back, and brought that paper on Monday, and I got an A+. He saw the name, and never heard the voice, and thought that name is equivalent to F. As you step out, please, you're more than F. You're more than D. You're more than C. You're even more than B. I tell my children the alphabet starts from A, and that's what God has put in every woman in this world. You are an A. Refuse to be in the shadows. Because as you remain in the shadows, someone will miss-grade you, miss, or underpay you, misuse, abuse you. Refuse to remain in the shadow. Step out of the shadow. And you decide to step out of the shadow, just in case some father, brother, sister, mother, or former professor tries to tell you that a girl has never done this before, remind them that a woman came all the way from Africa to tell us, the world is upside down. Things are not what they used to be before. The Black man is one of the best golfers. White boys are playing basketball very well. Two women are president of Africa, and a White man and a Black man and his family now lives in The White House. Step out of the shadows, and be the best God created you to be. Congratulations, students. Thank you, parents. Well done, faculty. God bless us all. Thank you.",Barnard College - Columbia University official website +linda Thomas Greenfield ,"Thank you, Mr. President. Thank you for convening us to commemorate this important day. And I thank the SecretaryGeneral, Madam High Commissioner, and Dr. Iweala, for your leadership in pressing us all to do more toward the elimination of racial discrimination, wherever and by whomever. This meeting ‚Äì this commemoration ‚Äì is personal to me. I am a person of African descent. But more importantly, I am a descendant of slaves. My great grandmother Mary Thomas, born in 1865, was the child of a slave. This is just three generations back from me. I grew up in the segregated South. I was bused to a segregated school, and on weekends, the Ku Klux Klan burned crosses on lawns in our neighborhood. When I was in high school, I was asked by a little girl, for whom I babysat, if I was an N-word because her dad had used that word for me. I know the ugly face of racism. I lived racism. I have experienced racism. And I survived racism. And through this process, I learned a simple truth: Racism is not the problem of the person who experiences it. Those of us who experience racism cannot, and should not, internalize it, despite the impact that it can have on our everyday lives. We must face it down, every time, no matter whom it‚Äôs directed towards. Racism is the problem of the racist. And it is the problem of the society that produces the racist. And in today‚Äôs world, that is every society. And in so many of our communities and countries, racism is endemic. It‚Äôs built in, like a rot in a frame. And it remains, and it festers, and it spreads because many of those in charge allow it to. Others look away and pretend it‚Äôs not there. But like a cancer, if ignored, it grows. Today, we commemorate our joint commitment to end all racial discrimination. And we take stock of our efforts during the midterm review of the Decade of People of African Descent. In America, conducting that review requires a reckoning ‚Äì a reckoning with our dark history of chattel slavery. Four-hundred-and-two years ago, African slaves were forced onto the shores of the colony of Virginia. Two years ago, the 1619 Project brought attention to this anniversary, and put the consequences of slavery, and the contributions of Black Americans, back at the center of our history and of our national narrative. As the project detailed, slavery is the original sin of America. It‚Äôs weaved white supremacy and black inferiority into our founding documents and principles. The Legacy Museum in Alabama traces this history, and if you‚Äôve not been there, I encourage you all to take a trip. Its exhibits draw a direct line from slavery to lynchings to segregation to mass incarceration and testify to this terrible history and the impact it is having on our people today. But even though slavery is our original sin, America is not the original source of slavery. Others share this shame with us. Slavery has existed in every corner of the globe. Africans enslaved fellow Africans long before the American colonists existed. And sadly, in many places around the world, slavery still exists today. As the scholar Isabel Wilkerson argues, humans in all contexts have ranked human value, pitting the presumed supremacy of one group against the presumed inferiority of others. In America, that takes many forms. Chief among them: our legacy of white supremacy. This year, the senseless killing of George Floyd, Breonna Taylor, and so many other Black Americans sparked a reckoning with racial justice, a movement that spread across the world: Black Lives Matter. And because Black Lives Matter, we need to dismantle white supremacy at every turn. This means looking at other kinds of hate, too. The FBI has reported a spike in hate crimes over the past three years ‚Äì particularly against Latino Americans, Sikhs, Muslim Americans, Jewish Americans, and immigrants. The most recent data shows hate crimes rising to a level not seen in over a decade. And that doesn‚Äôt even capture the bullying, discrimination, brutality, and violence that Asian Americans have faced since the outbreak of COVID-19. The mass shooting in Atlanta is only the latest example of this horror. At President Biden‚Äôs direction, we are flying our flag at half-staff at the U.S. Mission to the United Nations, to honor the victims of this terrible, senseless tragedy. It is so important we stand together ‚Äì we stand unified ‚Äì against this scourge. In unity, we have strength. But divisions and misperceptions about each other work against all of us. We also need to recognize that racism is far from unique in America. Across four decades and four continents in the Foreign Service, I experienced racism in countless international contexts, from overly zealous searches at airports, to police racially profiling my son, to being made to wait behind white patrons for a table at a restaurant. Racism was and continues to be a daily challenge wherever we are. And for millions, it‚Äôs more than a challenge. It‚Äôs deadly. Like in Burma, where Rohingya and others have been oppressed, abused, and killed in staggering numbers. Or in China, where the government has committed genocide and crimes against humanity against Uyghurs and members of other ethnic and religious minority groups in Xinjiang. The prevalence, and pervasiveness, of racial discrimination might make the situation look hopeless. But let me be clear: I remain hopeful. I am hopeful because I have seen how communities and countries can enact change. And I have experienced that progress in my own lifetime. Personally, I am just one example of what hope and strength can do. After all, this descendant of slaves is before you today as the U.S. Representative to the United Nations. The first chapter of my life story ‚Äì born in poverty to uneducated parents ‚Äì this could not have been predicted. So I ask, what can we do to promote change and keep hope alive for victims of racism? We can‚Äôt control the hate in people‚Äôs heart. But we can change the rules that give them license. That‚Äôs how I‚Äôm sitting here. It‚Äôs why we were able to welcome Vice President Kamala Harris to the UN this week. It‚Äôs why President Biden‚Äôs cabinet is the most diverse in history and includes the first Native American named to a cabinet post. We can make our communities, and our governments, reflect our highest aspirations ‚Äì even if some individuals still fall short. We can act. And in the Biden-Harris administration, we are doing just that. In the first 60 days, the President has made this a priority: from redressing racial discrimination in housing, to ending private prisons that warehouse young black and brown men, to respecting the sovereignty of Native American tribes, to combatting xenophobia and discrimination against Asians, Asian Americans, and Pacific Islanders. The Biden-Harris Administration also recognizes how the COVID-19 pandemic and economic crisis has been disproportionately damaging to members of racial and ethnic minorities. So, we have taken steps, like providing emergency relief funds, increasing access to nutritious food, and passing* federal student loan payments, that we know will particularly help Black and brown communities. To be clear, this is just the beginning. Ending racial discrimination, particularly in our criminal justice system, will be an ongoing top priority for the President, and for the entire Biden-Harris Administration. And we ask that other countries join us. We call for all countries to ratify and implement the International Convention on the Elimination of All Forms of Racial Discrimination. After all, this is about shaping the future. It‚Äôs shaping the future we want for our children, and our grandchildren, and their grandchildren. Already, they are demanding we do better. They are coming up with new ideas and they‚Äôre pushing for progressive action. They‚Äôre asking more from their politicians and their governments. And they‚Äôre in the streets, marching for charge. They say that ‚ÄúBlack Lives Matter.‚Äù Because they do. They chant: ‚ÄúThis is what democracy looks like.‚Äù Because it is. This is the American way. We have flaws. Deep, serious flaws. But we talk about them. We work to address them. And we press on, in hopes that we can leave the country better than we found it. We can do the same on a multilateral scale. Let us expose the racism and racial discrimination endemic in every society, around the globe. Let us press forward, to root out that discrimination and remove the rot from our foundations. And on this day dedicated to ending racial discrimination, as our flags fly at half-staff, let us leave our children a less hateful, more hopeful world. Let us give them a future. A future without fear. A future without violence. That is the legacy that I hope they can inherit. Thank you.",United States mission to the United Nation +Malala Yousafzai,"In the name of God, the most beneficent, the most merciful. + +Honorable UN Secretary General Mr Ban Ki-moon, respected president of the General Assembly Vuk Jeremic, honorable UN envoy for global education Mr Gordon Brown, respected elders and my dear brothers and sisters: Assalamu alaikum. + +Today is it an honor for me to be speaking again after a long time. Being here with such honorable people is a great moment in my life and it is an honor for me that today I am wearing a shawl of the late Benazir Bhutto. I don't know where to begin my speech. I don't know what people would be expecting me to say, but first of all thank you to God for whom we all are equal and thank you to every person who has prayed for my fast recovery and new life. I cannot believe how much love people have shown me. I have received thousands of good wish cards and gifts from all over the world. Thank you to all of them. Thank you to the children whose innocent words encouraged me. Thank you to my elders whose prayers strengthened me. I would like to thank my nurses, doctors and the staff of the hospitals in Pakistan and the UK and the UAE government who have helped me to get better and recover my strength. + +I fully support UN Secretary General Ban Ki-moon in his Global Education First Initiative and the work of UN Special Envoy for Global Education Gordon Brown and the respectful president of the UN General Assembly Vuk Jeremic. I thank them for the leadership they continue to give. They continue to inspire all of us to action. Dear brothers and sisters, do remember one thing: Malala Day is not my day. Today is the day of every woman, every boy and every girl who have raised their voice for their rights. + +There are hundreds of human rights activists and social workers who are not only speaking for their rights, but who are struggling to achieve their goal of peace, education and equality. Thousands of people have been killed by the terrorists and millions have been injured. I am just one of them. So here I stand. So here I stand, one girl, among many. I speak not for myself, but so those without a voice can be heard. Those who have fought for their rights. Their right to live in peace. Their right to be treated with dignity. Their right to equality of opportunity. Their right to be educated. + +Dear friends, on 9 October 2012, the Taliban shot me on the left side of my forehead. They shot my friends, too. They thought that the bullets would silence us, but they failed. And out of that silence came thousands of voices. The terrorists thought they would change my aims and stop my ambitions. But nothing changed in my life except this: weakness, fear and hopelessness died. Strength, power and courage was born. + +I am the same Malala. My ambitions are the same. My hopes are the same. And my dreams are the same. Dear sisters and brothers, I am not against anyone. Neither am I here to speak in terms of personal revenge against the Taliban or any other terrorist group. I am here to speak for the right of education for every child. I want education for the sons and daughters of the Taliban and all the terrorists and extremists. I do not even hate the Talib who shot me. Even if there was a gun in my hand and he was standing in front of me, I would not shoot him. This is the compassion I have learned from Mohammed, the prophet of mercy, Jesus Christ and Lord Buddha. This the legacy of change I have inherited from Martin Luther King, Nelson Mandela and Mohammed Ali Jinnah. + +This is the philosophy of nonviolence that I have learned from Gandhi, Bacha Khan and Mother Teresa. And this is the forgiveness that I have learned from my father and from my mother. This is what my soul is telling me: be peaceful and love everyone. + +Dear sisters and brothers, we realize the importance of light when we see darkness. We realize the importance of our voice when we are silenced. In the same way, when we were in Swat, the north of Pakistan, we realized the importance of pens and books when we saw the guns. The wise saying, ""The pen is mightier than the sword."" It is true. The extremists are afraid of books and pens. The power of education frightens them. They are afraid of women. The power of the voice of women frightens them. This is why they killed 14 innocent students in the recent attack in Quetta. And that is why they kill female teachers. That is why they are blasting schools every day because they were and they are afraid of change and equality that we will bring to our society. And I remember that there was a boy in our school who was asked by a journalist why are the Taliban against education? He answered very simply by pointing to his book, he said, ""a Talib doesn't know what is written inside this book."" + +They think that God is a tiny, little conservative being who would point guns at people's heads just for going to school. These terrorists are misusing the name of Islam for their own personal benefit. Pakistan is a peace loving, democratic country. Pashtuns want education for their daughters and sons. Islam is a religion of peace, humanity and brotherhood. It is the duty and responsibility to get education for each child, that is what it says. Peace is a necessity for education. In many parts of the world, especially Pakistan and Afghanistan, terrorism, war and conflicts stop children from going to schools. We are really tired of these wars. Women and children are suffering in many ways in many parts of the world. + +In India, innocent and poor children are victims of child labor. Many schools have been destroyed in Nigeria. People in Afghanistan have been affected by extremism. Young girls have to do domestic child labor and are forced to get married at an early age. Poverty, ignorance, injustice, racism and the deprivation of basic rights are the main problems, faced by both men and women. + +Today I am focusing on women's rights and girls' education because they are suffering the most. There was a time when women activists asked men to stand up for their rights. But this time we will do it by ourselves. I am not telling men to step away from speaking for women's rights, but I am focusing on women to be independent and fight for themselves. So dear sisters and brothers, now it's time to speak up. So today, we call upon the world leaders to change their strategic policies in favor of peace and prosperity. We call upon the world leaders that all of these deals must protect women and children's rights. A deal that goes against the rights of women is unacceptable. + +We call upon all governments to ensure free, compulsory education all over the world for every child. We call upon all the governments to fight against terrorism and violence. To protect children from brutality and harm. We call upon the developed nations to support the expansion of education opportunities for girls in the developing world. We call upon all communities to be tolerant, to reject prejudice based on caste, creed, sect, color, religion or agenda to ensure freedom and equality for women so they can flourish. We cannot all succeed when half of us are held back. We call upon our sisters around the world to be brave, to embrace the strength within themselves and realize their full potential. + +Dear brothers and sisters, we want schools and education for every child's bright future. We will continue our journey to our destination of peace and education. No one can stop us. We will speak up for our rights and we will bring change to our voice. We believe in the power and the strength of our words. Our words can change the whole world because we ware all together, united for the cause of education. And if we want to achieve our goal, then let us empower ourselves with the weapon of knowledge and let us shield ourselves with unity and togetherness. + +Dear brothers and sisters, we must not forget that millions of people are suffering from poverty and injustice and ignorance. We must not forget that millions of children are out of their schools. We must not forget that our sisters and brothers are waiting for a bright, peaceful future. + +So let us wage, so let us wage a glorious struggle against illiteracy, poverty and terrorism, let us pick up our books and our pens, they are the most powerful weapons. One child, one teacher, one book and one pen can change the world. Education is the only solution. Education first. Thank you.",Iowa state university archives +Michelle bachelet,"Distinguished Ministers, +Excellencies, +Colleagues and friends, + +I am very pleased to be here, and I thank the Core Group for organizing today’s event, especially our co-chairs, Argentina and the Netherlands. + +It is fundamental to the cause of human rights that we promote equality, and the protection of all people from discrimination and violence. + +It should be obvious that there are many different ways to be a human being. We need to respect and embrace these differences -- not criminalise them, not attack people, not deprive them of equal rights or the protection of the law, just because they are seen as “different”. + +The struggle for the rights of LGBTI people is a core part of the human rights struggle. + +And yet in many parts of the world, members of the LGBTI community continue to be the targets of brutal attacks, many of which are left unpunished. + +It is essential that we defend and protect the LGBTI community, from every kind of violence and discrimination. + +There should be nothing “controversial” about stopping people being murdered, or executed by agents of the State, simply because of who they are or whom they love. Tackling extreme violence does not require new norms. + +Seventy years ago, the Universal Declaration of Human Rights proclaimed that everyone, without distinction “has the right to life, liberty and security of the person.” When there is a pattern of hate-motivated violence – one, for example, based on gender, sexual orientation or gender identity – and the State does not act to prevent, and effectively address, those attacks, it is failing to live up to that obligation. + +Excellencies, + +In a number of countries, there have been patterns of hate-motivated killings against lesbian, gay, bi and trans people by private actors and, sometimes, by local security forces or non-State armed groups. In some countries, trans women, in particular, have been at risk of such killings. + +Worse still, when the victims of attacks seek protection, they are frequently subjected to intimidation and abuse, including from police and justice officials. And most countries do not track homophobic and transphobic crimes. + +The result is impunity. Too many victims go without recognition, remedy or justice. Too many perpetrators are free to strike again, undeterred by the prospect of rule of law. + +Intersex people, too, face violence. There have been reports of the killing of young intersex babies. Some intersex children are subjected to harmful practices in medical settings. And very few States are taking action to protect intersex children from such harm. + +LGBTI people are entitled to equal protection, and the same rights as everyone else. + +I am encouraged by the fact that an unprecedented number of countries are now committed to taking action to prevent and address killings and violence against LGBTI people. + +But we need for all States to step up their efforts to address these crimes; to prevent extrajudicial, summary or arbitrary executions; and to protect all people, without discrimination. + +Excellencies, + +Tragically, the issue is not only the inadequate response by the State to violence against LGBTI people. + +In seven countries, national or provincial laws provide for the execution of people convicted of acts related to homosexuality. I want to make clear that use of the death penalty in these circumstances is in complete violation of fundamental rights. + +More than 70 countries criminalize consensual same sex relationships, and also criminalize transgender people based on their appearance. These laws subject LGBT people to long prison sentences, and in some cases physical punishment. They also implicitly encourage prejudice, hatred and violence. + +But laws can change. + +In my country, Chile, following the brutal torture and murder of a young gay man in a Santiago park, six years ago, a very powerful and moving public discussion took place about the need to challenge hatred and violence towards the LGBT community. A bill, blocked for years in Parliament, was adopted – making it easier to punish homophobic and transphobic crimes. + +In India, we have just seen a landmark decision by the Supreme Court, decriminalising same-sex relationships. + +This important discussion is taking place all over the world. Not only in Europe and North America – it is moving forward in Africa, in Asia, in the Americas, in the Caribbean and in the Pacific. + +I welcome these vital changes. We need to see more countries taking steps to bring their laws and practices in line with the fundamental equality of all their people. + +But we need more. + +We need to change minds. + +At the core of killings and violence against LGBTI community is prejudice and hate. We will only prevent these crimes if we are brave enough to address these factors, across society. + +I am proud of the work my Office is doing to open people’s hearts and minds through its global Free & Equal campaign. This is one of the biggest UN public information initiatives ever undertaken, and it has reached hundreds of millions of people around the world. + +We also need education, education, education. Respect for diversity – including in relation to LGBTI people – should be reflected in school curricula and reinforced through effective public information campaigns. + +We need the business community, religious leaders, celebrities and the media to play a positive role. + +Excellencies, + +I believe that profound, positive change is possible. I have seen it in my own lifetime. It can be done. + +With your help, and the help of many others, we can prevent killings, violence, humiliation and fear in our LGBTI community. + +We can conquer hate. + +Thank you",United Nations office of high commisioner official website \ No newline at end of file diff --git a/content/tutorial-plotting-fractals.md b/content/tutorial-plotting-fractals.md index e97b0cbe..a1921cea 100644 --- a/content/tutorial-plotting-fractals.md +++ b/content/tutorial-plotting-fractals.md @@ -301,14 +301,14 @@ For example, setting $c = \frac{\pi}{10}$ gives us a very elegant cloud shape, w ```{code-cell} ipython3 output = julia(mesh, c=np.pi/10, num_iter=20) -kwargs = {'title': 'f(z) = z^2 + \dfrac{\pi}{10}', 'cmap': 'plasma'} +kwargs = {'title': r'f(z) = z^2 + \dfrac{\pi}{10}', 'cmap': 'plasma'} plot_fractal(output, **kwargs); ``` ```{code-cell} ipython3 output = julia(mesh, c=-0.75 + 0.4j, num_iter=20) -kwargs = {'title': 'f(z) = z^2 - \dfrac{3}{4} + 0.4i', 'cmap': 'Greens_r'} +kwargs = {'title': r'f(z) = z^2 - \dfrac{3}{4} + 0.4i', 'cmap': 'Greens_r'} plot_fractal(output, **kwargs); ``` @@ -334,7 +334,7 @@ def mandelbrot(mesh, num_iter=10, radius=2): ```{code-cell} ipython3 output = mandelbrot(mesh, num_iter=50) -kwargs = {'title': 'Mandelbrot \ set', 'cmap': 'hot'} +kwargs = {'title': 'Mandelbrot \\ set', 'cmap': 'hot'} plot_fractal(output, **kwargs); ``` @@ -370,8 +370,6 @@ for deg, ax in enumerate(axes.ravel()): diverge_len = general_julia(mesh, f=power, num_iter=15) ax.imshow(diverge_len, extent=[-2, 2, -2, 2], cmap='binary') ax.set_title(f'$f(z) = z^{degree} -1$') - -fig.tight_layout(); ``` Needless to say, there is a large amount of exploring that can be done by fiddling with the inputted function, value of $c$, number of iterations, radius and even the density of the mesh and choice of colours. @@ -419,7 +417,7 @@ p.deriv() ```{code-cell} ipython3 output = newton_fractal(mesh, p, p.deriv(), num_iter=15, r=2) -kwargs = {'title': 'f(z) = z - \dfrac{(z^8 + 15z^4 - 16)}{(8z^7 + 60z^3)}', 'cmap': 'copper'} +kwargs = {'title': r'f(z) = z - \dfrac{(z^8 + 15z^4 - 16)}{(8z^7 + 60z^3)}', 'cmap': 'copper'} plot_fractal(output, **kwargs) ``` @@ -443,7 +441,7 @@ def d_tan(z): ```{code-cell} ipython3 output = newton_fractal(mesh, f_tan, d_tan, num_iter=15, r=50) -kwargs = {'title': 'f(z) = z - \dfrac{sin(z)cos(z)}{2}', 'cmap': 'binary'} +kwargs = {'title': r'f(z) = z - \dfrac{sin(z)cos(z)}{2}', 'cmap': 'binary'} plot_fractal(output, **kwargs); ``` @@ -475,7 +473,7 @@ We will denote this one 'Wacky fractal', as its equation would not be fun to try ```{code-cell} ipython3 output = newton_fractal(small_mesh, sin_sum, d_sin_sum, num_iter=10, r=1) -kwargs = {'title': 'Wacky \ fractal', 'figsize': (6, 6), 'extent': [-1, 1, -1, 1], 'cmap': 'terrain'} +kwargs = {'title': 'Wacky \\ fractal', 'figsize': (6, 6), 'extent': [-1, 1, -1, 1], 'cmap': 'terrain'} plot_fractal(output, **kwargs) ``` @@ -550,7 +548,7 @@ def accident(z): ```{code-cell} ipython3 output = general_julia(mesh, f=accident, num_iter=15, c=0, radius=np.pi) -kwargs = {'title': 'Accidental \ fractal', 'cmap': 'Blues'} +kwargs = {'title': 'Accidental \\ fractal', 'cmap': 'Blues'} plot_fractal(output, **kwargs); ``` diff --git a/content/tutorial-static_equilibrium.md b/content/tutorial-static_equilibrium.md index c13b4b57..f649e56e 100644 --- a/content/tutorial-static_equilibrium.md +++ b/content/tutorial-static_equilibrium.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.7.1 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -32,7 +32,7 @@ When analyzing physical structures, it is crucial to understand the mechanics ke imported with the following comands: -```{code-cell} ipython3 +```{code-cell} import numpy as np import matplotlib.pyplot as plt ``` @@ -46,7 +46,7 @@ In this tutorial you will use the following NumPy tools: ## Solving equilibrium with Newton's second law -Your model consists of a beam under a sum of forces and moments. You can start analyzing this system with Newton's second law: +Your model consists of a beam under a sum of forces and moments. You can start analyzing this system with Newton's second law: $$\sum{\text{force}} = \text{mass} \times \text{acceleration}.$$ @@ -60,17 +60,17 @@ where each of the three components represent the magnitude of the force being ap $$r = (r_x, r_y, r_z)$$ -is the distance between the point where each component of the force is applied and the centroid of the system. Then, the moment can be computed by +is the distance between the point where each component of the force is applied and the centroid of the system. Then, the moment can be computed by $$r \times F = (r_x, r_y, r_z) \times (F_x, F_y, F_z).$$ Start with some simple examples of force vectors -```{code-cell} ipython3 +```{code-cell} forceA = np.array([1, 0, 0]) forceB = np.array([0, 1, 0]) -print('Force A =', forceA) -print('Force B =', forceB) +print("Force A =", forceA) +print("Force B =", forceB) ``` This defines `forceA` as being a vector with magnitude of 1 in the $x$ direction and `forceB` as magnitude 1 in the $y$ direction. @@ -79,10 +79,10 @@ It may be helpful to visualize these forces in order to better understand how th Matplotlib is a library with visualization tools that can be utilized for this purpose. Quiver plots will be used to demonstrate [three dimensional vectors](https://matplotlib.org/3.3.4/gallery/mplot3d/quiver3d.html), but the library can also be used for [two dimensional demonstrations](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.quiver.html). -```{code-cell} ipython3 +```{code-cell} fig = plt.figure() -d3 = fig.gca(projection='3d') +d3 = fig.add_subplot(projection="3d") d3.set_xlim(-1, 1) d3.set_ylim(-1, 1) @@ -90,11 +90,11 @@ d3.set_zlim(-1, 1) x, y, z = np.array([0, 0, 0]) # defining the point of application. Make it the origin -u, v, w = forceA # breaking the force vector into individual components -d3.quiver(x, y, z, u, v, w, color='r', label='forceA') +u, v, w = forceA # breaking the force vector into individual components +d3.quiver(x, y, z, u, v, w, color="r", label="forceA") u, v, w = forceB -d3.quiver(x, y, z, u, v, w, color='b', label='forceB') +d3.quiver(x, y, z, u, v, w, color="b", label="forceB") plt.legend() plt.show() @@ -102,18 +102,18 @@ plt.show() There are two forces emanating from a single point. In order to simplify this problem, you can add them together to find the sum of forces. Note that both `forceA` and `forceB` are three-dimensional vectors, represented by NumPy as arrays with three components. Because NumPy is meant to simplify and optimize operations between vectors, you can easily compute the sum of these two vectors as follows: -```{code-cell} ipython3 +```{code-cell} forceC = forceA + forceB -print('Force C =', forceC) +print("Force C =", forceC) ``` Force C now acts as a single force that represents both A and B. You can plot it to see the result. -```{code-cell} ipython3 +```{code-cell} fig = plt.figure() -d3 = fig.gca(projection='3d') +d3 = fig.add_subplot(projection="3d") d3.set_xlim(-1, 1) d3.set_ylim(-1, 1) @@ -122,11 +122,11 @@ d3.set_zlim(-1, 1) x, y, z = np.array([0, 0, 0]) u, v, w = forceA -d3.quiver(x, y, z, u, v, w, color='r', label='forceA') +d3.quiver(x, y, z, u, v, w, color="r", label="forceA") u, v, w = forceB -d3.quiver(x, y, z, u, v, w, color='b', label='forceB') +d3.quiver(x, y, z, u, v, w, color="b", label="forceB") u, v, w = forceC -d3.quiver(x, y, z, u, v, w, color='g', label='forceC') +d3.quiver(x, y, z, u, v, w, color="g", label="forceC") plt.legend() plt.show() @@ -156,7 +156,7 @@ solving for $R_x$, $R_y$, and $R_z$ gives you a vector $R$ of $(-1, -1, 0)$. If plotted, the forces seen in prior examples should be nullified. Only if there is no force remaining is the system considered to be in equilibrium. -```{code-cell} ipython3 +```{code-cell} R = np.array([-1, -1, 0]) fig = plt.figure() @@ -165,11 +165,11 @@ d3.set_xlim(-1, 1) d3.set_ylim(-1, 1) d3.set_zlim(-1, 1) -d3 = fig.gca(projection='3d') +d3 = fig.add_subplot(projection="3d") x, y, z = np.array([0, 0, 0]) -u, v, w = forceA + forceB + R # add them all together for sum of forces +u, v, w = forceA + forceB + R # add them all together for sum of forces d3.quiver(x, y, z, u, v, w) plt.show() @@ -192,14 +192,14 @@ Solve for both the reaction force and moments. Lets say a 5N force is applied perpendicularly 2m above the base of the pole. -```{code-cell} ipython3 +```{code-cell} f = 5 # Force in newtons L = 2 # Length of the pole R = 0 - f -M = 0 - f*L -print('Reaction force =', R) -print('Reaction moment =', M) +M = 0 - f * L +print("Reaction force =", R) +print("Reaction moment =", M) ``` ## Finding values with physical properties @@ -216,45 +216,45 @@ Now, say the cord is attached to the ground 3m in the x direction and attached t Define these points in space as NumPy arrays, and then use those arrays to find directional vectors. -```{code-cell} ipython3 +```{code-cell} poleBase = np.array([0, 0, 0]) cordBase = np.array([3, 0, 0]) cordConnection = np.array([0, 0, 2]) poleDirection = cordConnection - poleBase -print('Pole direction =', poleDirection) +print("Pole direction =", poleDirection) cordDirection = cordBase - cordConnection -print('Cord direction =', cordDirection) +print("Cord direction =", cordDirection) ``` In order to use these vectors in relation to forces you need to convert them into unit vectors. Unit vectors have a magnitude of one, and convey only the direction of the forces. -```{code-cell} ipython3 -cordUnit = cordDirection/np.linalg.norm(cordDirection) -print('Cord unit vector =', cordUnit) +```{code-cell} +cordUnit = cordDirection / np.linalg.norm(cordDirection) +print("Cord unit vector =", cordUnit) ``` You can then multiply this direction with the magnitude of the force in order to find the force vector. Let's say the cord has a tension of 5N: -```{code-cell} ipython3 +```{code-cell} cordTension = 5 forceCord = cordUnit * cordTension -print('Force from the cord =', forceCord) +print("Force from the cord =", forceCord) ``` In order to find the moment you need the cross product of the force vector and the radius. -```{code-cell} ipython3 +```{code-cell} momentCord = np.cross(forceCord, poleDirection) -print('Moment from the cord =', momentCord) +print("Moment from the cord =", momentCord) ``` Now all you need to do is find the reaction force and moment. -```{code-cell} ipython3 +```{code-cell} equilibrium = np.array([0, 0, 0]) R = equilibrium - forceCord M = equilibrium - momentCord @@ -263,7 +263,7 @@ print("Reaction moment =", M) ``` ### Another Example -Let's look at a slightly more complicated model. In this example you will be observing a beam with two cables and an applied force. This time you need to find both the tension in the cords and the reaction forces of the beam. *(Source: [Vector Mechanics for Engineers: Statics](https://www.mheducation.com/highered/product/vector-mechanics-engineers-statics-beer-johnston/M9780077687304.html), Problem 4.106)* +Let's look at a slightly more complicated model. In this example you will be observing a beam with two cables and an applied force. This time you need to find both the tension in the cords and the reaction forces of the beam. *(Source: [Vector Mechanics for Engineers: Statics and Dynamics](https://www.mheducation.com/highered/product/Vector-Mechanics-for-Engineers-Statics-and-Dynamics-Beer.html), Problem 4.106)* ![image.png](_static/problem4.png) @@ -273,7 +273,7 @@ Define distance *a* as 3 meters As before, start by defining the location of each relevant point as an array. -```{code-cell} ipython3 +```{code-cell} A = np.array([0, 0, 0]) B = np.array([0, 3, 0]) C = np.array([0, 6, 0]) @@ -284,16 +284,16 @@ F = np.array([-3, 0, 2]) From these equations, you start by determining vector directions with unit vectors. -```{code-cell} ipython3 +```{code-cell} AB = B - C AC = C - A BD = D - B BE = E - B CF = F - C -UnitBD = BD/np.linalg.norm(BD) -UnitBE = BE/np.linalg.norm(BE) -UnitCF = CF/np.linalg.norm(CF) +UnitBD = BD / np.linalg.norm(BD) +UnitBE = BE / np.linalg.norm(BE) +UnitCF = CF / np.linalg.norm(CF) RadBD = np.cross(AB, UnitBD) RadBE = np.cross(AB, UnitBE) @@ -387,5 +387,5 @@ This same process can be applied to kinetic problems or in any number of dimensi ### References -1. [Vector Mechanics for Engineers: Statics (Beer & Johnston & Mazurek)](https://www.mheducation.com/highered/product/vector-mechanics-engineers-statics-beer-johnston/M9780077687304.html) +1. [Vector Mechanics for Engineers: Statics and Dynamics (Beer & Johnston & Mazurek & et al.)](https://www.mheducation.com/highered/product/Vector-Mechanics-for-Engineers-Statics-and-Dynamics-Beer.html) 2. [NumPy Reference](https://numpy.org/doc/stable/reference/) diff --git a/content/tutorial-style-guide.md b/content/tutorial-style-guide.md index f1b401a3..24c6bef3 100644 --- a/content/tutorial-style-guide.md +++ b/content/tutorial-style-guide.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.6.0 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -16,7 +16,7 @@ kernelspec: ![The Diátaxis framework for documentation dividing tutorials, how-to guides, explanation, and reference](https://diataxis.fr/_images/diataxis.png)

Image credit: Daniele Procida's Diátaxis framework, licensed under CC-BY-SA 4.0.

-+++ ++++ ## What you'll do @@ -38,11 +38,11 @@ Guided by a template, you'll write a NumPy tutorial. - This template. -- A portrait of your intended reader. +- A portrait of your intended reader. - Just as schools list prerequisites for higher-level courses, you can assume readers know some things (which you must list, as noted in the next bullet). Overexplaining bogs down the tutorial and obscures the main points. - But also put yourself in the reader's place and consider what to explain along the way. - - + + - "What you'll need" is a list of: - packages that must be present on the user's machine before they begin. Don't include `numpy`. @@ -80,14 +80,14 @@ Avoid abstraction. "About" is a tipoff: Rather than writing "You'll learn about ## Why are "What you'll do" and "What you'll learn" different? -**What you'll do** is typically one sentence listing an end product: "You'll bake a cake." This makes the endpoint clear. **What you'll learn** lists the payoffs, and there may be many: "You'll learn to follow a recipe. You'll get practice measuring ingredients. You'll learn how to tell when a cake is ready to come out of the oven." +**What you'll do** is typically one sentence listing an end product: "You'll bake a cake." This makes the endpoint clear. **What you'll learn** lists the payoffs, and there may be many: "You'll learn to follow a recipe. You'll get practice measuring ingredients. You'll learn how to tell when a cake is ready to come out of the oven." ## Avoid asides As explained by expert documentation writer [Daniele Procida](https://documentation.divio.com/tutorials): -> Don’t explain anything the learner doesn’t need to know in order to complete the tutorial. +> Don’t explain anything the learner doesn’t need to know in order to complete the tutorial. Because tutorial steps are chosen to be clear and easy, they may fall short of production-grade. Yes, you should share this, but not during the tutorial, which should be straightforward and assured. The `In practice` section is the place for details, exceptions, alternatives, and similar fine print. @@ -120,15 +120,15 @@ NumPy docs follow the [Google developer documentation style guide](https://devel `Run all cells` should execute all cells to the bottom of the file. If you're demonstrating a bad expression and want to show the traceback, comment the expression and put the traceback in a text cell. -(Note that triple backquotes won't be enough for a traceback that contains ``, +(Note that triple backquotes won't be enough for a traceback that contains ``, the angle brackets must be replaced by `<` and `>` as shown in the text cell markdown below.) -```{code-cell} ipython3 -#100/0 +```{code-cell} +# 100/0 ```
- + --------------------------------------------------------------------------- ZeroDivisionError Traceback (most recent call last) <ipython-input-10-bbe761e74a70> in <module> @@ -138,7 +138,7 @@ ZeroDivisionError: division by zero
-+++ ++++ *** @@ -154,8 +154,8 @@ In an optional `On your own` section, you can offer an assignment for readers to -- Don't just say it's usually done another way; explain why. - +- Don't just say it's usually done another way; explain why. + ## Further reading diff --git a/content/tutorial-svd.md b/content/tutorial-svd.md index 05e6be1c..aded8df0 100644 --- a/content/tutorial-svd.md +++ b/content/tutorial-svd.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.6.0 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -35,31 +35,37 @@ After this tutorial, you should be able to: ## Content -In this tutorial, we will use a [matrix decomposition](https://en.wikipedia.org/wiki/Matrix_decomposition) from linear algebra, the Singular Value Decomposition, to generate a compressed approximation of an image. We'll use the `face` image from the [scipy.misc](https://docs.scipy.org/doc/scipy/reference/misc.html#module-scipy.misc) module: +In this tutorial, we will use a [matrix decomposition](https://en.wikipedia.org/wiki/Matrix_decomposition) from linear algebra, the Singular Value Decomposition, to generate a compressed approximation of an image. We'll use the `face` image from the [scipy.datasets](https://docs.scipy.org/doc/scipy/reference/datasets.html) module: -```{code-cell} ipython3 -from scipy import misc -img = misc.face() +```{code-cell} +# TODO: Rm try-except with scipy 1.10 is the minimum supported version +try: + from scipy.datasets import face +except ImportError: # Data was in scipy.misc prior to scipy v1.10 + from scipy.misc import face + +img = face() ``` -**Note**: If you prefer, you can use your own image as you work through this tutorial. In order to transform your image into a NumPy array that can be manipulated, you can use the `imread` function from the [matplotlib.pyplot](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.html#module-matplotlib.pyplot) submodule. Alternatively, you can use the [imageio.imread](https://imageio.readthedocs.io/en/stable/userapi.html#imageio.imread) function from the `imageio` library. Be aware that if you use your own image, you'll likely need to adapt the steps below. For more information on how images are treated when converted to NumPy arrays, see [A crash course on NumPy for images](https://scikit-image.org/docs/stable/user_guide/numpy_images.html) from the `scikit-image` documentation. +**Note**: If you prefer, you can use your own image as you work through this tutorial. In order to transform your image into a NumPy array that can be manipulated, you can use the `imread` function from the [matplotlib.pyplot](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.html#module-matplotlib.pyplot) submodule. Alternatively, you can use the [imageio.imread](https://imageio.readthedocs.io/en/stable/_autosummary/imageio.v3.imread.html) function from the `imageio` library. Be aware that if you use your own image, you'll likely need to adapt the steps below. For more information on how images are treated when converted to NumPy arrays, see [A crash course on NumPy for images](https://scikit-image.org/docs/stable/user_guide/numpy_images.html) from the `scikit-image` documentation. +++ Now, `img` is a NumPy array, as we can see when using the `type` function: -```{code-cell} ipython3 +```{code-cell} type(img) ``` We can see the image using the [matplotlib.pyplot.imshow](https://matplotlib.org/api/_as_gen/matplotlib.pyplot.imshow.html#matplotlib.pyplot.imshow) function & the special iPython command, `%matplotlib inline` to display plots inline: -```{code-cell} ipython3 +```{code-cell} import matplotlib.pyplot as plt + %matplotlib inline ``` -```{code-cell} ipython3 +```{code-cell} plt.imshow(img) plt.show() ``` @@ -70,7 +76,7 @@ Note that, in linear algebra, the dimension of a vector refers to the number of First, let's check for the shape of the data in our array. Since this image is two-dimensional (the pixels in the image form a rectangle), we might expect a two-dimensional array to represent it (a matrix). However, using the `shape` property of this NumPy array gives us a different result: -```{code-cell} ipython3 +```{code-cell} img.shape ``` @@ -78,28 +84,28 @@ The output is a [tuple](https://docs.python.org/dev/tutorial/datastructures.html Furthermore, using the `ndim` property of this array, we can see that -```{code-cell} ipython3 +```{code-cell} img.ndim ``` NumPy refers to each dimension as an *axis*. Because of how `imread` works, the *first index in the 3rd axis* is the red pixel data for our image. We can access this by using the syntax -```{code-cell} ipython3 +```{code-cell} img[:, :, 0] ``` From the output above, we can see that every value in `img[:, :, 0]` is an integer value between 0 and 255, representing the level of red in each corresponding image pixel (keep in mind that this might be different if you -use your own image instead of [scipy.misc.face](https://docs.scipy.org/doc/scipy/reference/generated/scipy.misc.face.html#scipy.misc.face)). +use your own image instead of [scipy.datasets.face](https://docs.scipy.org/doc/scipy/reference/generated/scipy.datasets.face.html)). As expected, this is a 768x1024 matrix: -```{code-cell} ipython3 +```{code-cell} img[:, :, 0].shape ``` Since we are going to perform linear algebra operations on this data, it might be more interesting to have real numbers between 0 and 1 in each entry of the matrices to represent the RGB values. We can do that by setting -```{code-cell} ipython3 +```{code-cell} img_array = img / 255 ``` @@ -108,19 +114,19 @@ This operation, dividing an array by a scalar, works because of NumPy's [broadca You can check that the above works by doing some tests; for example, inquiring about maximum and minimum values for this array: -```{code-cell} ipython3 +```{code-cell} img_array.max(), img_array.min() ``` or checking the type of data in the array: -```{code-cell} ipython3 +```{code-cell} img_array.dtype ``` Note that we can assign each color channel to a separate matrix using the slice syntax: -```{code-cell} ipython3 +```{code-cell} red_array = img_array[:, :, 0] green_array = img_array[:, :, 1] blue_array = img_array[:, :, 2] @@ -132,13 +138,13 @@ It is possible to use methods from linear algebra to approximate an existing set +++ -**Note**: We will use NumPy's linear algebra module, [numpy.linalg](https://numpy.org/devdocs/reference/routines.linalg.html#module-numpy.linalg), to perform the operations in this tutorial. Most of the linear algebra functions in this module can also be found in [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg), and users are encouraged to use the [scipy](https://docs.scipy.org/doc/scipy/reference/index.html#module-scipy) module for real-world applications. However, some functions in the [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg) module, such as the SVD function, only support 2D arrays. For more information on this, check the [scipy.linalg Reference](https://docs.scipy.org/doc/scipy/reference/tutorial/linalg.html). +**Note**: We will use NumPy's linear algebra module, [numpy.linalg](https://numpy.org/devdocs/reference/routines.linalg.html#module-numpy.linalg), to perform the operations in this tutorial. Most of the linear algebra functions in this module can also be found in [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg), and users are encouraged to use the [scipy](https://docs.scipy.org/doc/scipy/reference/index.html#module-scipy) module for real-world applications. However, some functions in the [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg) module, such as the SVD function, only support 2D arrays. For more information on this, check the [scipy.linalg page](https://docs.scipy.org/doc/scipy/tutorial/linalg.html). +++ To proceed, import the linear algebra submodule from NumPy: -```{code-cell} ipython3 +```{code-cell} from numpy import linalg ``` @@ -148,35 +154,35 @@ $$U \Sigma V^T = A$$ where $U$ and $V^T$ are square and $\Sigma$ is the same size as $A$. $\Sigma$ is a diagonal matrix and contains the [singular values](https://en.wikipedia.org/wiki/Singular_value) of $A$, organized from largest to smallest. These values are always non-negative and can be used as an indicator of the "importance" of some features represented by the matrix $A$. -Let's see how this works in practice with just one matrix first. Note that according to [colorimetry](https://en.wikipedia.org/wiki/Grayscale#Colorimetric_(perceptual_luminance-reserving)_conversion_to_grayscale), +Let's see how this works in practice with just one matrix first. Note that according to [colorimetry](https://en.wikipedia.org/wiki/Grayscale#Colorimetric_(perceptual_luminance-preserving)_conversion_to_grayscale), it is possible to obtain a fairly reasonable grayscale version of our color image if we apply the formula $$Y = 0.2126 R + 0.7152 G + 0.0722 B$$ where $Y$ is the array representing the grayscale image, and $R$, $G$ and $B$ are the red, green and blue channel arrays we had originally. Notice we can use the `@` operator (the matrix multiplication operator for NumPy arrays, see [numpy.matmul](https://numpy.org/devdocs/reference/generated/numpy.matmul.html#numpy.matmul)) for this: -```{code-cell} ipython3 +```{code-cell} img_gray = img_array @ [0.2126, 0.7152, 0.0722] ``` Now, `img_gray` has shape -```{code-cell} ipython3 +```{code-cell} img_gray.shape ``` To see if this makes sense in our image, we should use a colormap from `matplotlib` corresponding to the color we wish to see in out image (otherwise, `matplotlib` will default to a colormap that does not correspond to the real data). -In our case, we are approximating the grayscale portion of the image, so we will use the colormap `gray`: +In our case, we are approximating the grayscale portion of the image, so we will use the colormap `gray`: -```{code-cell} ipython3 +```{code-cell} plt.imshow(img_gray, cmap="gray") plt.show() ``` Now, applying the [linalg.svd](https://numpy.org/devdocs/reference/generated/numpy.linalg.svd.html#numpy.linalg.svd) function to this matrix, we obtain the following decomposition: -```{code-cell} ipython3 +```{code-cell} U, s, Vt = linalg.svd(img_gray) ``` @@ -186,7 +192,7 @@ U, s, Vt = linalg.svd(img_gray) Let's check that this is what we expected: -```{code-cell} ipython3 +```{code-cell} U.shape, s.shape, Vt.shape ``` @@ -199,8 +205,9 @@ s @ Vt results in a `ValueError`. This happens because having a one-dimensional array for `s`, in this case, is much more economic in practice than building a diagonal matrix with the same data. To reconstruct the original matrix, we can rebuild the diagonal matrix $\Sigma$ with the elements of `s` in its diagonal and with the appropriate dimensions for multiplying: in our case, $\Sigma$ should be 768x1024 since `U` is 768x768 and `Vt` is 1024x1024. In order to add the singular values to the diagonal of `Sigma`, we will use the [fill_diagonal](https://numpy.org/devdocs/reference/generated/numpy.fill_diagonal.html) function from NumPy: -```{code-cell} ipython3 +```{code-cell} import numpy as np + Sigma = np.zeros((U.shape[1], Vt.shape[0])) np.fill_diagonal(Sigma, s) ``` @@ -213,7 +220,7 @@ Now, we want to check if the reconstructed `U @ Sigma @ Vt` is close to the orig The [linalg](https://numpy.org/devdocs/reference/routines.linalg.html#module-numpy.linalg) module includes a `norm` function, which computes the norm of a vector or matrix represented in a NumPy array. For example, from the SVD explanation above, we would expect the norm of the difference between `img_gray` and the reconstructed SVD product to be small. As expected, you should see something like -```{code-cell} ipython3 +```{code-cell} linalg.norm(img_gray - U @ Sigma @ Vt) ``` @@ -221,13 +228,13 @@ linalg.norm(img_gray - U @ Sigma @ Vt) We could also have used the [numpy.allclose](https://numpy.org/devdocs/reference/generated/numpy.allclose.html#numpy.allclose) function to make sure the reconstructed product is, in fact, *close* to our original matrix (the difference between the two arrays is small): -```{code-cell} ipython3 +```{code-cell} np.allclose(img_gray, U @ Sigma @ Vt) ``` To see if an approximation is reasonable, we can check the values in `s`: -```{code-cell} ipython3 +```{code-cell} plt.plot(s) plt.show() ``` @@ -236,21 +243,21 @@ In the graph, we can see that although we have 768 singular values in `s`, most The idea is to consider all but the first `k` singular values in `Sigma` (which are the same as in `s`) as zeros, keeping `U` and `Vt` intact, and computing the product of these matrices as the approximation. -For example, if we choose +For example, if we choose -```{code-cell} ipython3 +```{code-cell} k = 10 ``` we can build the approximation by doing -```{code-cell} ipython3 +```{code-cell} approx = U @ Sigma[:, :k] @ Vt[:k, :] ``` Note that we had to use only the first `k` rows of `Vt`, since all other rows would be multiplied by the zeros corresponding to the singular values we eliminated from this approximation. -```{code-cell} ipython3 +```{code-cell} plt.imshow(approx, cmap="gray") plt.show() ``` @@ -268,7 +275,7 @@ If our array has more than two dimensions, then the SVD can be applied to all ax In our case, -```{code-cell} ipython3 +```{code-cell} img_array.shape ``` @@ -280,20 +287,20 @@ indicates that the axis will be reordered such that the final shape of the trans Let's see how this goes for our array: -```{code-cell} ipython3 +```{code-cell} img_array_transposed = np.transpose(img_array, (2, 0, 1)) img_array_transposed.shape ``` Now we are ready to apply the SVD: -```{code-cell} ipython3 +```{code-cell} U, s, Vt = linalg.svd(img_array_transposed) ``` Finally, to obtain the full approximated image, we need to reassemble these matrices into the approximation. Now, note that -```{code-cell} ipython3 +```{code-cell} U.shape, s.shape, Vt.shape ``` @@ -307,7 +314,7 @@ If you have worked before with only one- or two-dimensional arrays in NumPy, you Now, to build our approximation, we first need to make sure that our singular values are ready for multiplication, so we build our `Sigma` matrix similarly to what we did before. The `Sigma` array must have dimensions `(3, 768, 1024)`. In order to add the singular values to the diagonal of `Sigma`, we will again use the [fill_diagonal](https://numpy.org/devdocs/reference/generated/numpy.fill_diagonal.html) function, using each of the 3 rows in `s` as the diagonal for each of the 3 matrices in `Sigma`: -```{code-cell} ipython3 +```{code-cell} Sigma = np.zeros((3, 768, 1024)) for j in range(3): np.fill_diagonal(Sigma[j, :, :], s[j, :]) @@ -315,25 +322,25 @@ for j in range(3): Now, if we wish to rebuild the full SVD (with no approximation), we can do -```{code-cell} ipython3 +```{code-cell} reconstructed = U @ Sigma @ Vt ``` Note that -```{code-cell} ipython3 +```{code-cell} reconstructed.shape ``` The reconstructed image should be indistinguishable from the original one, except for differences due to floating point errors from the reconstruction. Recall that our original image consisted of floating point values in the range `[0., 1.]`. The accumulation of floating point error from the reconstruction can result in values slightly outside this original range: -```{code-cell} ipython3 +```{code-cell} reconstructed.min(), reconstructed.max() ``` Since `imshow` expects values in the range, we can use `clip` to excise the floating point error: -```{code-cell} ipython3 +```{code-cell} reconstructed = np.clip(reconstructed, 0, 1) plt.imshow(np.transpose(reconstructed, (1, 2, 0))) plt.show() @@ -343,7 +350,7 @@ In fact, `imshow` peforms this clipping under-the-hood, so if you skip the first Now, to do the approximation, we must choose only the first `k` singular values for each color channel. This can be done using the following syntax: -```{code-cell} ipython3 +```{code-cell} approx_img = U @ Sigma[..., :k] @ Vt[..., :k, :] ``` @@ -352,13 +359,13 @@ placeholder for other axes. For more details, see the documentation on [Indexing Now, -```{code-cell} ipython3 +```{code-cell} approx_img.shape ``` which is not the right shape for showing the image. Finally, reordering the axes back to our original shape of `(768, 1024, 3)`, we can see our approximation: -```{code-cell} ipython3 +```{code-cell} plt.imshow(np.transpose(approx_img, (1, 2, 0))) plt.show() ``` @@ -376,6 +383,6 @@ terms of the norm of the difference. For more information, see *G. H. Golub and - [Python tutorial](https://docs.python.org/dev/tutorial/index.html) - [NumPy Reference](https://numpy.org/devdocs/reference/index.html#reference) -- [SciPy Tutorial](https://docs.scipy.org/doc/scipy/reference/tutorial/index.html) +- [SciPy Tutorial](https://docs.scipy.org/doc/scipy/tutorial/index.html) - [SciPy Lecture Notes](https://scipy-lectures.org) - [A matlab, R, IDL, NumPy/SciPy dictionary](http://mathesaurus.sf.net/) diff --git a/content/tutorial-x-ray-image-processing.md b/content/tutorial-x-ray-image-processing.md index 17749145..9e00ea6c 100644 --- a/content/tutorial-x-ray-image-processing.md +++ b/content/tutorial-x-ray-image-processing.md @@ -3,8 +3,8 @@ jupytext: text_representation: extension: .md format_name: myst - format_version: 0.12 - jupytext_version: 1.7.1 + format_version: 0.13 + jupytext_version: 1.11.1 kernelspec: display_name: Python 3 language: python @@ -113,30 +113,30 @@ The file — `00000011_001.png` — has been downloaded for you and saved in the **1.** Load the image with `imageio`: -```{code-cell} ipython3 +```{code-cell} import os import imageio -DIR = 'tutorial-x-ray-image-processing' +DIR = "tutorial-x-ray-image-processing" -xray_image = imageio.imread(os.path.join(DIR, '00000011_001.png')) +xray_image = imageio.v3.imread(os.path.join(DIR, "00000011_001.png")) ``` **2.** Check that its shape is 1024x1024 pixels and that the array is made up of 8-bit integers: -```{code-cell} ipython3 +```{code-cell} print(xray_image.shape) print(xray_image.dtype) ``` **3.** Import `matplotlib` and display the image in a grayscale colormap: -```{code-cell} ipython3 +```{code-cell} import matplotlib.pyplot as plt -plt.imshow(xray_image, cmap='gray') -plt.axis('off') +plt.imshow(xray_image, cmap="gray") +plt.axis("off") plt.show() ``` @@ -152,18 +152,18 @@ from one of the dataset files. They are numbered from `...000.png` to **1.** Import NumPy, read in each of the X-rays, and create a three-dimensional array where the first dimension corresponds to image number: -```{code-cell} ipython3 +```{code-cell} import numpy as np num_imgs = 9 combined_xray_images_1 = np.array( - [imageio.imread(os.path.join(DIR, f"00000011_00{i}.png")) for i in range(num_imgs)] + [imageio.v3.imread(os.path.join(DIR, f"00000011_00{i}.png")) for i in range(num_imgs)] ) ``` **2.** Check the shape of the new X-ray image array containing 9 stacked images: -```{code-cell} ipython3 +```{code-cell} combined_xray_images_1.shape ``` @@ -186,9 +186,10 @@ Let's create a GIF file with `imageio.mimwrite()` and display the result in the notebook: ```{code-cell} ipython3 -GIF_PATH = os.path.join(DIR, 'xray_image.gif') -imageio.mimwrite(GIF_PATH, combined_xray_images_1, format= '.gif', fps = 1) +GIF_PATH = os.path.join(DIR, "xray_image.gif") +imageio.mimwrite(GIF_PATH, combined_xray_images_1, format= ".gif", duration=1000) ``` + Which gives us: ![An animated gif repeatedly cycles through a series of 8 x-rays, showing the same viewpoint of the patient's chest at different points in time. The patient's bones and internal organs can be visually compared from frame to frame.](tutorial-x-ray-image-processing/xray_image.gif) ## Edge detection using the Laplacian-Gaussian, Gaussian gradient, Sobel, and Canny filters @@ -222,7 +223,7 @@ straightforward: 1) import the `ndimage` module from SciPy; and 2) call with a sigma (scalar) parameter, which affects the standard deviations of the Gaussian filter (you'll use `1` in the example below): -```{code-cell} ipython3 +```{code-cell} from scipy import ndimage xray_image_laplace_gaussian = ndimage.gaussian_laplace(xray_image, sigma=1) @@ -230,15 +231,15 @@ xray_image_laplace_gaussian = ndimage.gaussian_laplace(xray_image, sigma=1) Display the original X-ray and the one with the Laplacian-Gaussian filter: -```{code-cell} ipython3 +```{code-cell} fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(10, 10)) -axes[0].set_title('Original') -axes[0].imshow(xray_image, cmap='gray') -axes[1].set_title('Laplacian-Gaussian (edges)') -axes[1].imshow(xray_image_laplace_gaussian, cmap='gray') +axes[0].set_title("Original") +axes[0].imshow(xray_image, cmap="gray") +axes[1].set_title("Laplacian-Gaussian (edges)") +axes[1].imshow(xray_image_laplace_gaussian, cmap="gray") for i in axes: - i.axis('off') + i.axis("off") plt.show() ``` @@ -257,21 +258,21 @@ image components. with a sigma (scalar) parameter (for standard deviations; you'll use `2` in the example below): -```{code-cell} ipython3 +```{code-cell} x_ray_image_gaussian_gradient = ndimage.gaussian_gradient_magnitude(xray_image, sigma=2) ``` **2.** Display the original X-ray and the one with the Gaussian gradient filter: -```{code-cell} ipython3 +```{code-cell} fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(10, 10)) -axes[0].set_title('Original') -axes[0].imshow(xray_image, cmap='gray') -axes[1].set_title('Gaussian gradient (edges)') -axes[1].imshow(x_ray_image_gaussian_gradient, cmap='gray') +axes[0].set_title("Original") +axes[0].imshow(xray_image, cmap="gray") +axes[1].set_title("Gaussian gradient (edges)") +axes[1].imshow(x_ray_image_gaussian_gradient, cmap="gray") for i in axes: - i.axis('off') + i.axis("off") plt.show() ``` @@ -301,7 +302,7 @@ follows the `output_channel = 255.0 * (input_channel - min_value) / (max_value - [formula](http://dev.ipol.im/~nmonzon/Normalization.pdf). Because you're using a grayscale image, you need to normalize just one channel. -```{code-cell} ipython3 +```{code-cell} x_sobel = ndimage.sobel(xray_image, axis=0) y_sobel = ndimage.sobel(xray_image, axis=1) @@ -314,29 +315,29 @@ xray_image_sobel *= 255.0 / np.max(xray_image_sobel) from `float16` to [make it compatible](https://github.com/matplotlib/matplotlib/issues/15432) with Matplotlib: -```{code-cell} ipython3 -print('The data type - before: ', xray_image_sobel.dtype) +```{code-cell} +print("The data type - before: ", xray_image_sobel.dtype) -xray_image_sobel = xray_image_sobel.astype('float32') +xray_image_sobel = xray_image_sobel.astype("float32") -print('The data type - after: ', xray_image_sobel.dtype) +print("The data type - after: ", xray_image_sobel.dtype) ``` **3.** Display the original X-ray and the one with the Sobel "edge" filter applied. Note that both the grayscale and `CMRmap` colormaps are used to help emphasize the edges: -```{code-cell} ipython3 +```{code-cell} fig, axes = plt.subplots(nrows=1, ncols=3, figsize=(15, 15)) -axes[0].set_title('Original') -axes[0].imshow(xray_image, cmap='gray') -axes[1].set_title('Sobel (edges) - grayscale') -axes[1].imshow(xray_image_sobel, cmap='gray') -axes[2].set_title('Sobel (edges) - CMRmap') -axes[2].imshow(xray_image_sobel, cmap='CMRmap') +axes[0].set_title("Original") +axes[0].imshow(xray_image, cmap="gray") +axes[1].set_title("Sobel (edges) - grayscale") +axes[1].imshow(xray_image_sobel, cmap="gray") +axes[2].set_title("Sobel (edges) - CMRmap") +axes[2].imshow(xray_image_sobel, cmap="CMRmap") for i in axes: - i.axis('off') + i.axis("off") plt.show() ``` @@ -368,7 +369,7 @@ Next, measure the distance between the gradients using NumPy's `np.hypot()`. Finally, [normalize](https://en.wikipedia.org/wiki/Normalization_%28image_processing%29) the rescaled image, as before. -```{code-cell} ipython3 +```{code-cell} fourier_gaussian = ndimage.fourier_gaussian(xray_image, sigma=0.05) x_prewitt = ndimage.prewitt(fourier_gaussian, axis=0) @@ -378,26 +379,26 @@ xray_image_canny = np.hypot(x_prewitt, y_prewitt) xray_image_canny *= 255.0 / np.max(xray_image_canny) -print('The data type - ', xray_image_canny.dtype) +print("The data type - ", xray_image_canny.dtype) ``` **2.** Plot the original X-ray image and the ones with the edges detected with the help of the Canny filter technique. The edges can be emphasized using the `prism`, `nipy_spectral`, and `terrain` Matplotlib colormaps. -```{code-cell} ipython3 +```{code-cell} fig, axes = plt.subplots(nrows=1, ncols=4, figsize=(20, 15)) -axes[0].set_title('Original') -axes[0].imshow(xray_image, cmap='gray') -axes[1].set_title('Canny (edges) - prism') -axes[1].imshow(xray_image_canny, cmap='prism') -axes[2].set_title('Canny (edges) - nipy_spectral') -axes[2].imshow(xray_image_canny, cmap='nipy_spectral') -axes[3].set_title('Canny (edges) - terrain') -axes[3].imshow(xray_image_canny, cmap='terrain') +axes[0].set_title("Original") +axes[0].imshow(xray_image, cmap="gray") +axes[1].set_title("Canny (edges) - prism") +axes[1].imshow(xray_image_canny, cmap="prism") +axes[2].set_title("Canny (edges) - nipy_spectral") +axes[2].imshow(xray_image_canny, cmap="nipy_spectral") +axes[3].set_title("Canny (edges) - terrain") +axes[3].imshow(xray_image_canny, cmap="terrain") for i in axes: - i.axis('off') + i.axis("off") plt.show() ``` @@ -419,12 +420,12 @@ image. **1.** Retrieve some basics statistics about the pixel values in the original X-ray image you've been working with: -```{code-cell} ipython3 -print('The data type of the X-ray image is: ', xray_image.dtype) -print('The minimum pixel value is: ', np.min(xray_image)) -print('The maximum pixel value is: ', np.max(xray_image)) -print('The average pixel value is: ', np.mean(xray_image)) -print('The median pixel value is: ', np.median(xray_image)) +```{code-cell} +print("The data type of the X-ray image is: ", xray_image.dtype) +print("The minimum pixel value is: ", np.min(xray_image)) +print("The maximum pixel value is: ", np.max(xray_image)) +print("The average pixel value is: ", np.mean(xray_image)) +print("The median pixel value is: ", np.median(xray_image)) ``` **2.** The array data type is `uint8` and the minimum/maximum value results @@ -432,11 +433,13 @@ suggest that all 256 colors (from `0` to `255`) are used in the X-ray. Let's visualize the _pixel intensity distribution_ of the original raw X-ray image with `ndimage.histogram()` and Matplotlib: -```{code-cell} ipython3 -pixel_intensity_distribution = ndimage.histogram(xray_image, min=np.min(xray_image), max=np.max(xray_image), bins=256) +```{code-cell} +pixel_intensity_distribution = ndimage.histogram( + xray_image, min=np.min(xray_image), max=np.max(xray_image), bins=256 +) plt.plot(pixel_intensity_distribution) -plt.title('Pixel intensity distribution') +plt.title("Pixel intensity distribution") plt.show() ``` @@ -447,23 +450,23 @@ As the pixel intensity distribution suggests, there are many low (between around for example, let's have only those values of the image with the pixels exceeding a certain threshold: -```{code-cell} ipython3 +```{code-cell} # The threshold is "greater than 150" # Return the original image if true, `0` otherwise xray_image_mask_noisy = np.where(xray_image > 150, xray_image, 0) -plt.imshow(xray_image_mask_noisy, cmap='gray') -plt.axis('off') +plt.imshow(xray_image_mask_noisy, cmap="gray") +plt.axis("off") plt.show() ``` -```{code-cell} ipython3 +```{code-cell} # The threshold is "greater than 150" # Return `1` if true, `0` otherwise xray_image_mask_less_noisy = np.where(xray_image > 150, 1, 0) -plt.imshow(xray_image_mask_less_noisy, cmap='gray') -plt.axis('off') +plt.imshow(xray_image_mask_less_noisy, cmap="gray") +plt.axis("off") plt.show() ``` @@ -474,29 +477,29 @@ plt.show() Let's display some of the results of processed X-ray images you've worked with so far: -```{code-cell} ipython3 +```{code-cell} fig, axes = plt.subplots(nrows=1, ncols=9, figsize=(30, 30)) -axes[0].set_title('Original') -axes[0].imshow(xray_image, cmap='gray') -axes[1].set_title('Laplace-Gaussian (edges)') -axes[1].imshow(xray_image_laplace_gaussian, cmap='gray') -axes[2].set_title('Gaussian gradient (edges)') -axes[2].imshow(x_ray_image_gaussian_gradient, cmap='gray') -axes[3].set_title('Sobel (edges) - grayscale') -axes[3].imshow(xray_image_sobel, cmap='gray') -axes[4].set_title('Sobel (edges) - hot') -axes[4].imshow(xray_image_sobel, cmap='hot') -axes[5].set_title('Canny (edges) - prism)') -axes[5].imshow(xray_image_canny, cmap='prism') -axes[6].set_title('Canny (edges) - nipy_spectral)') -axes[6].imshow(xray_image_canny, cmap='nipy_spectral') -axes[7].set_title('Mask (> 150, noisy)') -axes[7].imshow(xray_image_mask_noisy, cmap='gray') -axes[8].set_title('Mask (> 150, less noisy)') -axes[8].imshow(xray_image_mask_less_noisy, cmap='gray') +axes[0].set_title("Original") +axes[0].imshow(xray_image, cmap="gray") +axes[1].set_title("Laplace-Gaussian (edges)") +axes[1].imshow(xray_image_laplace_gaussian, cmap="gray") +axes[2].set_title("Gaussian gradient (edges)") +axes[2].imshow(x_ray_image_gaussian_gradient, cmap="gray") +axes[3].set_title("Sobel (edges) - grayscale") +axes[3].imshow(xray_image_sobel, cmap="gray") +axes[4].set_title("Sobel (edges) - hot") +axes[4].imshow(xray_image_sobel, cmap="hot") +axes[5].set_title("Canny (edges) - prism)") +axes[5].imshow(xray_image_canny, cmap="prism") +axes[6].set_title("Canny (edges) - nipy_spectral)") +axes[6].imshow(xray_image_canny, cmap="nipy_spectral") +axes[7].set_title("Mask (> 150, noisy)") +axes[7].imshow(xray_image_mask_noisy, cmap="gray") +axes[8].set_title("Mask (> 150, less noisy)") +axes[8].imshow(xray_image_mask_less_noisy, cmap="gray") for i in axes: - i.axis('off') + i.axis("off") plt.show() ``` diff --git a/content/tutorial-x-ray-image-processing/xray_image.gif b/content/tutorial-x-ray-image-processing/xray_image.gif deleted file mode 100644 index 66cdef88..00000000 Binary files a/content/tutorial-x-ray-image-processing/xray_image.gif and /dev/null differ diff --git a/content/who_covid_19_sit_rep_time_series.csv b/content/who_covid_19_sit_rep_time_series.csv index ebf670b8..aeb3f5a9 100644 --- a/content/who_covid_19_sit_rep_time_series.csv +++ b/content/who_covid_19_sit_rep_time_series.csv @@ -1,115 +1,270 @@ -Province/States,Country/Region,WHO region,1/21/20,1/22/20,1/23/20,1/24/20,1/25/20,1/26/20,1/27/20,1/28/20,1/29/20,1/30/20,1/31/20,2/1/20,2/2/20,2/3/20,2/4/20,2/5/20,2/6/20,2/7/20,2/8/20,2/9/20,2/10/20,2/11/20,2/12/20,2/13/20,2/14/20,2/15/20,2/16/20,2/17/20,2/18/20,2/19/20,2/20/20,2/21/20,2/22/20,2/23/20,2/24/20,2/25/20,2/26/20,2/27/20,2/28/20,2/29/20,3/1/20,3/2/20,3/3/20 -Confirmed,Globally,,282,314,581,846,1320,2014,2798,4593,6065,7818,9826,11953,14557,17391,20630,24554,28276,31481,34886,37558,40554,43103,45171,46997,49053,50580,51857,71429,73332,75204,75748,76769,77794,78811,79331,80239,81109,82294,83652,85403,87137,88948,90870 -Confirmed,Mainland China,Western Pacific Region,278,309,571,830,1297,1985,2741,4537,5997,7736,9720,11821,14411,17238,20471,24363,28060,31211,34598,37251,40235,42708,44730,46550,48548,50054,51174,70635,72528,74280,74675,75569,76392,77042,77262,77780,78191,78630,78961,79394,79968,80174,80304 -Confirmed,Outside of China,,4,5,10,16,23,29,57,56,68,82,106,132,146,153,159,191,216,270,288,307,319,395,441,447,505,526,683,794,804,924,1073,1200,1402,1769,2069,2459,2918,3664,4691,6009,7169,8774,10566 -Suspected,Mainland China,Western Pacific Region,,,,,,,5794,6973,9239,12167,15238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Severe,Mainland China,Western Pacific Region,,,,,,,461,976,1239,1370,1527,1795,2110,2296,2788,3219,3859,4821,6101,6188,6484,7333,8204,,,,,,,,,,,,,,,,,,,, -Deaths,Mainland China,Western Pacific Region,,,,,,,80,106,132,170,213,259,304,361,425,491,564,637,723,812,909,1017,1114,1260,1381,1524,1666,1772,1870,2006,2121,2239,2348,2445,2595,2666,2718,2747,2791,2838,2873,2915,2946 -Hubei ,China,Western Pacific Region,258,270,375,375,,,,,,,,7153,9074,11177,13522,16678,19665,22112,24953,27100,29631,31728,33366,34874,51968,54406,56249,58182,59989,61682,62031,62662,63454,64084,64287,64786,65187,65596,65914,66337,66907,67103,67217 -Guangdong,China,Western Pacific Region,14,17,26,32,,,,,,,,520,604,683,797,870,944,1018,1075,1120,1151,1177,1219,1241,1261,1295,1316,1322,1328,1331,1332,1333,1339,1342,1345,1347,1347,1347,1348,1349,1349,1350,1350 -Henan,China,Western Pacific Region,,1,1,1,,,,,,,,422,493,566,675,764,851,914,981,1033,1073,1105,1135,1169,1184,1212,1231,1246,1257,1262,1265,1267,1270,1271,1271,1271,1271,1272,1272,1272,1272,1272,1272 -Zhejiang,China,Western Pacific Region,,5,5,5,,,,,,,,599,661,724,829,895,954,1006,1048,1075,1104,1117,1131,1145,1155,1162,1167,1171,1172,1173,1175,1203,1205,1205,1205,1205,1205,1205,1205,1205,1205,1206,1213 -Hunan,China,Western Pacific Region,,1,1,1,,,,,,,,389,463,521,593,661,711,772,803,838,879,912,946,968,988,1001,1004,1006,1007,1008,1010,1011,1013,1016,1016,1016,1016,1017,1017,1018,1018,1018,1018 -Anhui,China,Western Pacific Region,,,,,,,,,,,,297,340,408,480,530,591,665,733,779,830,860,889,910,934,950,962,973,982,986,987,988,989,989,989,989,989,989,990,990,990,990,990 -Jiangxi,China,Western Pacific Region,,1,2,2,,,,,,,,286,333,391,476,548,600,661,698,740,771,804,844,872,900,913,925,930,933,934,934,934,934,934,934,934,934,934,935,935,935,935,935 -Shandong,China,Western Pacific Region,,1,1,1,,,,,,,,202,225,246,270,298,343,379,407,435,459,486,497,506,519,530,537,541,543,544,546,748,750,754,755,755,756,756,756,756,756,758,758 -Jiangsu,China,Western Pacific Region,,,,,,,,,,,,202,231,271,308,341,373,408,439,468,492,515,543,570,593,604,617,626,629,631,631,631,631,631,631,631,631,631,631,631,631,631,631 -Chongqing,China,Western Pacific Region,,1,5,5,,,,,,,,238,262,300,337,366,389,411,426,446,468,486,505,518,529,537,544,551,553,555,560,567,572,573,575,576,576,576,576,576,576,576,576 -Sichuan,China,Western Pacific Region,,1,2,2,,,,,,,,207,236,254,282,301,321,344,363,386,405,417,436,451,463,470,481,495,508,514,520,525,526,526,527,529,531,534,538,538,538,538,538 -Heilongjiang,China,Western Pacific Region,,,,,,,,,,,,80,95,118,155,190,227,277,282,307,331,360,378,395,418,425,445,457,464,470,476,479,479,480,480,480,480,480,480,480,480,480,480 -Beijing,China,Western Pacific Region,5,5,10,10,,,,,,,,156,183,212,228,253,274,297,315,326,337,342,352,366,372,375,380,381,387,393,395,396,399,399,399,400,400,410,410,411,413,414,414 -Shanghai,China,Western Pacific Region,1,2,9,9,,,,,,,,153,177,193,208,233,254,269,281,292,295,302,306,313,318,326,328,331,333,333,333,334,334,335,335,335,336,337,337,337,337,337,338 -Hebei,China,Western Pacific Region,,,,,,,,,,,,96,104,113,126,135,157,171,195,206,218,239,251,265,283,291,300,301,302,306,307,308,309,311,311,311,312,317,318,318,318,318,318 -Fujian,China,Western Pacific Region,,,,,,,,,,,,144,159,179,194,205,215,224,239,250,261,267,272,279,281,285,287,290,292,293,293,293,293,293,293,294,294,296,296,296,296,296,296 -Guangxi,China,Western Pacific Region,,,,,,,,,,,,100,111,127,139,150,168,172,183,195,210,215,222,222,226,235,237,238,242,244,245,246,249,249,251,252,252,252,252,252,252,252,252 -Shaanxi,China,Western Pacific Region,,,,,,,,,,,,101,116,128,142,165,173,184,195,208,213,219,225,229,230,232,236,240,240,242,245,245,245,245,245,245,245,245,245,245,245,245,245 -Yunnan,China,Western Pacific Region,,1,1,1,,,,,,,,91,99,109,117,122,128,135,138,140,141,149,154,155,162,168,169,171,172,172,172,174,174,174,174,174,174,174,174,174,174,174,174 -Hainan,China,Western Pacific Region,,,,,,,,,,,,57,63,70,79,89,100,111,123,128,136,142,145,157,157,162,162,162,163,163,168,168,168,168,168,168,168,168,168,168,168,168,168 -Guizhou,China,Western Pacific Region,,,,,,,,,,,,29,38,46,56,64,69,77,89,96,109,118,131,135,140,143,144,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146 -Tianjin,China,Western Pacific Region,,2,2,2,,,,,,,,34,40,49,63,67,70,94,81,88,91,96,106,112,119,120,122,124,125,128,130,131,133,135,135,135,135,135,136,136,136,136,136 -Shanxi,China,Western Pacific Region,,,,,,,,,,,,47,56,66,74,81,90,96,104,115,119,122,124,126,126,127,128,129,130,131,131,132,132,132,132,133,133,133,133,133,133,133,133 -Liaoning,China,Western Pacific Region,,,,,,,,,,,,60,64,70,74,81,89,94,99,105,107,108,111,116,117,119,120,121,121,121,121,121,121,121,121,121,121,121,121,121,122,122,125 -Hong Kong,China,Western Pacific Region,,,1,2,5,5,8,8,8,10,12,13,14,15,15,18,21,24,26,26,36,42,49,50,53,56,56,57,60,62,65,68,68,70,74,81,85,91,93,94,95,98,101 -Jilin,China,Western Pacific Region,,,,,,,,,,,,17,21,31,42,54,59,65,69,78,80,81,83,84,86,88,88,89,89,90,91,91,91,91,93,93,93,93,93,93,93,93,93 -Gansu,China,Western Pacific Region,,,,,,,,,,,,35,45,51,56,57,62,70,71,81,85,86,86,87,90,90,90,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91 -Xinjiang,China,Western Pacific Region,,,,,,,,,,,,18,23,24,29,32,36,39,42,45,49,55,59,63,65,70,71,73,76,76,76,76,76,75,76,76,76,76,76,76,76,76,76 -Inner Mongolia,China,Western Pacific Region,,,,,,,,,,,,23,26,33,37,42,46,49,50,54,58,58,60,61,63,68,70,72,73,75,75,75,75,75,75,75,75,75,75,75,75,75,75 -Ningxia,China,Western Pacific Region,,,,,,,,,,,,26,28,31,34,34,40,43,45,45,49,53,58,64,67,70,70,70,70,71,71,71,71,71,71,71,71,72,72,73,73,74,74 -Taiwan,China,Western Pacific Region,,1,1,1,3,3,4,7,8,8,9,10,10,10,10,11,11,16,16,17,18,18,18,18,18,18,18,20,22,23,24,26,26,23,28,31,32,32,34,39,39,40,42 -Qinghai,China,Western Pacific Region,,,,,,,,,,,,8,9,13,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,12,18,18,18,18,18,18,18,18,18,18,18,18,18 -Macau,China,Western Pacific Region,,,1,2,2,2,5,7,7,7,7,7,7,8,8,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10 -Xizang,China,Western Pacific Region,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -Unspecified*,China,Western Pacific Region,,,131,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,Japan,Western Pacific Region,1,1,1,1,3,3,4,6,7,11,14,17,20,20,20,33,25,25,25,26,26,26,28,29,33,41,53,59,65,73,85,93,105,132,144,157,164,186,210,230,239,254,268 -,Republic of Korea,Western Pacific Region,1,1,1,2,2,2,4,4,4,4,11,12,15,15,16,18,23,24,24,27,27,28,28,28,28,28,29,30,31,51,104,204,346,602,763,977,1261,1766,2337,3150,3736,4212,4812 -,Thailand,South-East Asia Region,2,2,2,4,4,5,5,14,14,14,14,19,19,19,19,25,25,25,32,32,32,33,33,33,33,34,34,35,35,35,35,35,35,35,35,37,40,40,40,42,42,42,43 -,United States of America,Region of the Americas,,,1,1,2,2,5,5,5,5,6,7,8,11,11,11,12,12,12,12,12,13,13,14,15,15,15,15,15,15,15,15,35,35,35,53,53,59,59,62,62,62,64 -,Vietnam,Western Pacific Region,,,,2,2,2,2,2,2,2,5,6,7,8,9,10,10,12,13,14,14,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16 -,Singapore,Western Pacific Region,,,,1,3,3,4,7,7,10,13,16,18,18,18,24,28,30,33,40,43,45,47,50,58,67,72,75,77,81,84,85,86,89,89,90,91,93,96,98,102,106,108 -,Italy,European Region,,,,,,,,,,,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,9,76,124,229,322,400,650,888,1128,1689,2036 -,Nepal,South-East Asia Region,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -,Australia,Western Pacific Region,,,,,3,3,4,5,7,7,9,12,12,12,12,13,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,17,21,21,21,22,23,23,23,24,25,27,33 -,Malaysia,Western Pacific Region,,,,,,3,4,4,4,7,8,8,8,8,10,10,12,14,15,17,18,18,18,18,19,21,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,24,29 -,Canada,Region of the Americas,,,,,,,1,2,3,3,3,4,4,4,4,5,5,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,9,9,10,10,11,11,14,19,19,27 -,Cambodia,Western Pacific Region,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -,France,European Region,,,,,3,3,3,3,4,5,6,6,6,6,6,6,6,6,6,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,18,38,57,100,100,191 -,Sri Lanka,South-East Asia Region,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -,Iran,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,18,28,43,61,95,141,245,388,593,978,1501 -,India,South-East Asia Region,,,,,,,,,,1,1,1,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,3,3,3,3,5 -,Germany,European Region,,,,,,,,1,4,4,5,7,8,10,12,12,12,13,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,18,21,26,57,57,129,157 -,Philippines,Western Pacific Region,,,,,,,,,,1,1,1,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,3,3,3 -,Spain,European Region,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,12,25,32,45,45,114 -,United Kingdom,European Region,,,,,,,,,,,,2,2,2,2,2,2,3,3,3,4,8,8,9,9,9,9,9,9,9,9,9,9,9,9,13,13,13,16,20,23,36,39 -,Sweden,European Region,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,7,12,13,14,15 -,Switzerland,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,6,10,18,26,30 -,Austria,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,5,10,10,18 -,Norway,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,6,15,19,25 -,Kuwait,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,8,12,43,43,45,45,56,56 -,Bahrain,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,26,33,33,38,40,47,49 -,United Arab Emirates,Eastern Mediterranean Region,,,,,,,,,4,4,4,4,5,5,5,5,5,5,7,7,7,8,8,8,8,8,8,9,9,9,9,9,11,13,13,13,13,13,19,19,19,21,21 -,Israel,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,2,3,5,7,7,10 -,Iraq,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,6,7,8,13,19,26 -,Oman,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,6,6,6,6,6 -,Lebanon,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,2,2,2,2,10,13 -,Pakistan,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,4,5 -,Egypt,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2 -,Croatia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,7,7,9 -,Greece,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,3,7,7 -,Finland,European Region,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,7 -,Algeria,African Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,5 -,Brazil,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,2 -,Russian,European Region,,,,,,,,,,,,2,2,2,2,2,2,2,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 -,Belgium,European Region,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8 -,Denmark,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,3,4,5 -,Estonia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1 -,Georgia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,3,3,3 -,North Macedonia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1 -,Romania,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,3,3,3 -,Afghanistan,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1 -,New Zealand,Western Pacific Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,2 -,Belarus,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1 -,Lithuania,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1 -,Netherlands,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,7,13,18 -,Nigeria,African Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1 -,Mexico,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,5 -,San Marino,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,8 -,Azerbaijan,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3 -,Ireland,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1 -,Monaco,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1 -,Qatar,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,7 -,Ecuador,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,6 -,Czechia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -,Iceland,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,9 -,Armenia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -,Luxembourg,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -,Indonesia,South-East Asia Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -,Dominican Republic,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -,Portugal,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2 -,Andorra,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Latvia,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Jordan,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Morocco,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Saudi Arabia,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Tunisia,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -,Senegal,African Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -Case on an international conveyance,Other,Other,,,,,,,,,,,,,,,,,20,61,64,64,70,135,175,174,218,218,355,454,454,542,621,634,634,634,695,691,691,705,705,705,706,706,706 \ No newline at end of file +Province/States,Country/Region,WHO region,WHO region label,1/21/20,1/22/20,1/23/20,1/24/20,1/25/20,1/26/20,1/27/20,1/28/20,1/29/20,1/30/20,1/31/20,2/1/20,2/2/20,2/3/20,2/4/20,2/5/20,2/6/20,2/7/20,2/8/20,2/9/20,2/10/20,2/11/20,2/12/20,2/13/20,2/14/20,2/15/20,2/16/20,2/17/20,2/18/20,2/19/20,2/20/20,2/21/20,2/22/20,2/23/20,2/24/20,2/25/20,2/26/20,2/27/20,2/28/20,2/29/20,3/1/20,3/2/20,3/3/20,3/4/20,3/5/20,3/6/20,3/7/20,3/8/20,3/9/20,3/10/20,3/11/20,3/12/20,3/13/20,3/14/20,3/15/20,3/16/20,3/17/20,3/18/20,3/19/20,3/20/20,3/21/20,3/22/20,3/23/20,3/24/20,3/25/20,3/26/20,3/27/20,3/28/20,3/29/20,3/30/20,3/31/20,4/1/20,4/2/20,4/3/20,4/4/20,4/5/20,4/6/20,4/7/20,4/8/20,4/9/20,4/10/20,4/11/20,4/12/20,4/13/20,4/14/20,4/15/20,4/16/20,4/17/20,4/18/20,4/19/20,4/20/20,4/21/20,4/22/20,4/23/20,4/24/20,4/25/20,4/26/20,4/27/20,4/28/20,4/29/20,4/30/20,5/1/20,5/2/20,5/3/20,5/4/20,5/5/20,5/6/20,5/7/20,5/8/20,5/9/20,5/10/20,5/11/20,5/12/20,5/13/20,5/14/20,5/15/20,5/16/20,5/17/20,5/18/20,5/19/20,5/20/20,5/21/20,5/22/20,5/23/20,5/24/20,5/25/20,5/26/20,5/27/20,5/28/20,5/29/20,5/30/20,5/31/20,6/1/20,6/2/20,6/3/20,6/4/20,6/5/20,6/6/20,6/7/20,6/8/20,6/9/20,6/10/20,6/11/20,6/12/20,6/13/20,6/14/20,6/15/20,6/16/20,6/17/20,6/18/20,6/19/20,6/20/20,6/21/20,6/22/20,6/23/20,6/24/20,6/25/20,6/26/20,6/27/20,6/28/20,6/29/20,6/30/20,7/1/20,7/2/20,7/3/20,7/4/20,7/5/20,7/6/20,7/7/20,7/8/20,7/9/20,7/10/20,7/11/20,7/12/20,7/13/20,7/14/20,7/15/20,7/16/20,7/17/20,7/18/20,7/19/20,7/20/20,7/21/20,7/22/20,7/23/20,7/24/20,7/25/20,7/26/20,7/27/20,7/28/20,7/29/20,7/30/20,7/31/20,8/1/20,8/2/20,8/3/20,8/4/20,8/5/20,8/6/20,8/7/20,8/8/20,8/9/20,8/10/20,8/11/20,8/12/20,8/13/20,8/14/20,8/15/20,8/16/20 +Confirmed,Globally,,,282,314,581,846,1320,2014,2798,4593,6065,7818,9826,11953,14557,17391,20630,24554,28276,31481,34886,37558,40554,43103,45171,46997,49053,50580,51857,71429,73332,75204,75748,76769,77794,78811,79331,80239,81109,82294,83652,85403,87137,88948,90870,93091,95324,98192,101927,105586,109577,113702,118319,125048,132758,142539,153517,167515,179111,191127,209839,234073,266073,292142,332930,372755,413467,462684,509164,571659,634813,693282,750890,823626,896450,972303,1051697,1133758,1210956,1279722,1353361,1210956,1521252,1610909,1696588,1773084,1844863,1914916,1991562,2074529,2160207,2241778,2314621,2397216,2471136,2544792,2626321,2719896,2804796,2878196,2954222,3018681,3090445,3175207,3267184,3349786,3435894,3517345,3588773,3672238,3759967,3855809,3917366,4006257,4088848,4170424,4248389,4338658,4425485,4525497,4618821,4731458,4789205,4893186,4993470,5103006,5204508,5304772,5404512,5488825,5593631,5701337,5817385,5934936,6057853,6194533,6287771,6416828,6535354,6663304,6799713,6931000,7039918,7145539,7273958,7410510,7553182,7690708,7823289,7941791,8061550,8242999,8385440,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,Globally,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7426,7807,8778,9840,11184,12783,14509,16231,18433,20834,23335,26493,29891,33106,36405,40598,45525,50321,56986,62784,67594,72614,79235,85522,92798,99690,105952,111652,117021,123010,130885,139378,146088,152551,157847,162956,169006,175694,181938,187705,193710,198668,202597,207973,217769,224172,229971,238628,239604,243401,247503,254045,259474,265861,274361,278892,283153,287399,292046,297119,302059,307395,311847,316169,318789,323256,327738,333401,337687,342029,343514,349095,353334,357688,362705,367166,371166,376320,379941,382867,387155,392802,397388,400857,404396,408025,413372,418294,423349,427630,431541,434796,440290,445535,450686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,China,Western Pacific Region,,278,309,571,830,1297,1985,2741,4537,5997,7736,9720,11821,14411,17238,20471,24363,28060,31211,34598,37251,40235,42708,44730,46550,48548,50054,51174,70635,72528,74280,74675,75569,76392,77042,77262,77780,78191,78630,78961,79394,79968,80174,80304,80422,80565,80711,80813,80859,80904,80924,80955,80981,80991,81021,81048,81077,81116,81116,81174,81300,81416,81498,81601,81747,81848,81961,82078,82230,82341,82447,82545,82631,82724,82802,82875,82930,83005,83071,83157,83249,83305,83369,83482,83597,83696,83745,83797,84149,84180,84201,84237,84250,84287,84302,84311,84324,84338,84341,84347,84369,84373,84385,84388,84393,84400,84404,84406,84409,84415,84416,84430,84450,84451,84458,84464,84469,84478,84484,84494,84500,84505,84507,84520,84522,84525,84536,84543,84544,84547,84547,84565,84570,84588,84597,84602,84603,84614,84620,84629,84634,84638,84641,84652,84659,84659,84729,84778,84823,84867,84903,84940,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,Outside of China,,,4,5,10,16,23,29,57,56,68,82,106,132,146,153,159,191,216,270,288,307,319,395,441,447,505,526,683,794,804,924,1073,1200,1402,1769,2069,2459,2918,3664,4691,6009,7169,8774,10566,12669,14759,17481,21114,24727,28673,32778,37364,44067,51767,61518,72469,86438,97995,110011,128665,152773,184657,210644,251329,291008,331619,380723,427086,489429,552472,610835,668345,740995,813726,889501,968822,1050828,1127951,1196651,1270204,1127707,1437947,1527540,1613106,1689487,1761167,1831171,1907765,1990380,2076027,2157577,2230384,2312966,2386849,2460490,2542010,2635572,2720458,2793855,2869875,2934312,3006072,3090822,3182796,3265393,3351494,3432941,3504367,3587829,3675552,3771393,3832936,3921807,4004397,4085966,4163925,4254189,4341007,4441013,4534327,4646958,4704700,4808679,4908950,5018484,5119983,5220236,5319969,5404281,5509084,5616790,5732820,5850366,5973265,6109936,6203169,6332225,6450740,6578684,6715084,6846366,6955280,7060898,7189306,7325851,7468523,7605979,7738511,7856968,7976683,8158096,8300500,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,China,Western Pacific Region,,,,,,,,80,106,132,170,213,259,304,361,425,491,564,637,723,812,909,1017,1114,1260,1381,1524,1666,1772,1870,2006,2121,2239,2348,2445,2595,2666,2718,2747,2791,2838,2873,2915,2946,2984,3015,3045,3073,3100,3123,3140,3162,3173,4955,3194,3204,3218,3231,3231,3242,3253,3261,3267,3276,3283,3287,3293,3298,3301,3306,3310,3314,3321,3327,3331,3335,3338,3340,3340,3342,3344,3345,3349,3349,3351,3351,3352,3352,4642,4642,4642,4642,4642,4642,4642,4642,4642,4642,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4643,4644,4644,4644,4644,4644,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,4645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hubei ,China,Western Pacific Region,,258,270,375,375,,,,,,,,7153,9074,11177,13522,16678,19665,22112,24953,27100,29631,31728,33366,34874,51968,54406,56249,58182,59989,61682,62031,62662,63454,64084,64287,64786,65187,65596,65914,66337,66907,67103,67217,67332,67466,67592,67666,67707,67743,67760,67773,67781,67786,67790,67794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guangdong,China,Western Pacific Region,,14,17,26,32,,,,,,,,520,604,683,797,870,944,1018,1075,1120,1151,1177,1219,1241,1261,1295,1316,1322,1328,1331,1332,1333,1339,1342,1345,1347,1347,1347,1348,1349,1349,1350,1350,1350,1350,1351,1352,1352,1352,1353,1353,1356,1356,1356,1357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Henan,China,Western Pacific Region,,,1,1,1,,,,,,,,422,493,566,675,764,851,914,981,1033,1073,1105,1135,1169,1184,1212,1231,1246,1257,1262,1265,1267,1270,1271,1271,1271,1271,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1273,1273,1273,1273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Zhejiang,China,Western Pacific Region,,,5,5,5,,,,,,,,599,661,724,829,895,954,1006,1048,1075,1104,1117,1131,1145,1155,1162,1167,1171,1172,1173,1175,1203,1205,1205,1205,1205,1205,1205,1205,1205,1205,1206,1213,1213,1215,1215,1215,1215,1215,1215,1215,1215,1215,1227,1231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hunan,China,Western Pacific Region,,,1,1,1,,,,,,,,389,463,521,593,661,711,772,803,838,879,912,946,968,988,1001,1004,1006,1007,1008,1010,1011,1013,1016,1016,1016,1016,1017,1017,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Anhui,China,Western Pacific Region,,,,,,,,,,,,,297,340,408,480,530,591,665,733,779,830,860,889,910,934,950,962,973,982,986,987,988,989,989,989,989,989,989,990,990,990,990,990,990,990,990,990,990,990,990,990,990,990,990,990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jiangxi,China,Western Pacific Region,,,1,2,2,,,,,,,,286,333,391,476,548,600,661,698,740,771,804,844,872,900,913,925,930,933,934,934,934,934,934,934,934,934,934,935,935,935,935,935,935,935,935,935,935,935,935,935,935,935,935,935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shandong,China,Western Pacific Region,,,1,1,1,,,,,,,,202,225,246,270,298,343,379,407,435,459,486,497,506,519,530,537,541,543,544,546,748,750,754,755,755,756,756,756,756,756,758,758,758,758,758,758,758,758,758,759,760,760,760,760,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jiangsu,China,Western Pacific Region,,,,,,,,,,,,,202,231,271,308,341,373,408,439,468,492,515,543,570,593,604,617,626,629,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Chongqing,China,Western Pacific Region,,,1,5,5,,,,,,,,238,262,300,337,366,389,411,426,446,468,486,505,518,529,537,544,551,553,555,560,567,572,573,575,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sichuan,China,Western Pacific Region,,,1,2,2,,,,,,,,207,236,254,282,301,321,344,363,386,405,417,436,451,463,470,481,495,508,514,520,525,526,526,527,529,531,534,538,538,538,538,538,538,538,539,539,539,539,539,539,539,539,539,539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heilongjiang,China,Western Pacific Region,,,,,,,,,,,,,80,95,118,155,190,227,277,282,307,331,360,378,395,418,425,445,457,464,470,476,479,479,480,480,480,480,480,480,480,480,480,480,480,481,481,481,481,481,481,482,482,482,482,482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Beijing,China,Western Pacific Region,,5,5,10,10,,,,,,,,156,183,212,228,253,274,297,315,326,337,342,352,366,372,375,380,381,387,393,395,396,399,399,399,400,400,410,410,411,413,414,414,417,418,422,426,428,428,429,435,435,436,437,442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shanghai,China,Western Pacific Region,,1,2,9,9,,,,,,,,153,177,193,208,233,254,269,281,292,295,302,306,313,318,326,328,331,333,333,333,334,334,335,335,335,336,337,337,337,337,337,338,338,338,339,342,342,342,342,344,344,346,350,353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hebei,China,Western Pacific Region,,,,,,,,,,,,,96,104,113,126,135,157,171,195,206,218,239,251,265,283,291,300,301,302,306,307,308,309,311,311,311,312,317,318,318,318,318,318,318,318,318,318,318,318,318,318,318,318,318,318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Fujian,China,Western Pacific Region,,,,,,,,,,,,,144,159,179,194,205,215,224,239,250,261,267,272,279,281,285,287,290,292,293,293,293,293,293,293,294,294,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guangxi,China,Western Pacific Region,,,,,,,,,,,,,100,111,127,139,150,168,172,183,195,210,215,222,222,226,235,237,238,242,244,245,246,249,249,251,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shaanxi,China,Western Pacific Region,,,,,,,,,,,,,101,116,128,142,165,173,184,195,208,213,219,225,229,230,232,236,240,240,242,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yunnan,China,Western Pacific Region,,,1,1,1,,,,,,,,91,99,109,117,122,128,135,138,140,141,149,154,155,162,168,169,171,172,172,172,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hainan,China,Western Pacific Region,,,,,,,,,,,,,57,63,70,79,89,100,111,123,128,136,142,145,157,157,162,162,162,163,163,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guizhou,China,Western Pacific Region,,,,,,,,,,,,,29,38,46,56,64,69,77,89,96,109,118,131,135,140,143,144,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tianjin,China,Western Pacific Region,,,2,2,2,,,,,,,,34,40,49,63,67,70,94,81,88,91,96,106,112,119,120,122,124,125,128,130,131,133,135,135,135,135,135,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shanxi,China,Western Pacific Region,,,,,,,,,,,,,47,56,66,74,81,90,96,104,115,119,122,124,126,126,127,128,129,130,131,131,132,132,132,132,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Liaoning,China,Western Pacific Region,,,,,,,,,,,,,60,64,70,74,81,89,94,99,105,107,108,111,116,117,119,120,121,121,121,121,121,121,121,121,121,121,121,121,121,122,122,125,125,125,125,125,125,125,125,125,125,125,125,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hong Kong,China,Western Pacific Region,,,,1,2,5,5,8,8,8,10,12,13,14,15,15,18,21,24,26,26,36,42,49,50,53,56,56,57,60,62,65,68,68,70,74,81,85,91,93,94,95,98,101,100,104,104,107,109,114,115,120,129,131,137,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jilin,China,Western Pacific Region,,,,,,,,,,,,,17,21,31,42,54,59,65,69,78,80,81,83,84,86,88,88,89,89,90,91,91,91,91,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gansu,China,Western Pacific Region,,,,,,,,,,,,,35,45,51,56,57,62,70,71,81,85,86,86,87,90,90,90,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,102,119,120,124,124,125,127,127,129,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Xinjiang,China,Western Pacific Region,,,,,,,,,,,,,18,23,24,29,32,36,39,42,45,49,55,59,63,65,70,71,73,76,76,76,76,76,75,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Inner Mongolia,China,Western Pacific Region,,,,,,,,,,,,,23,26,33,37,42,46,49,50,54,58,58,60,61,63,68,70,72,73,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ningxia,China,Western Pacific Region,,,,,,,,,,,,,26,28,31,34,34,40,43,45,45,49,53,58,64,67,70,70,70,70,71,71,71,71,71,71,71,71,72,72,73,73,74,74,75,75,75,75,75,75,75,75,75,75,75,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Taiwan,China,Western Pacific Region,,,1,1,1,3,3,4,7,8,8,9,10,10,10,10,11,11,16,16,17,18,18,18,18,18,18,18,20,22,23,24,26,26,23,28,31,32,32,34,39,39,40,42,42,42,45,45,45,45,45,47,49,49,50,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Qinghai,China,Western Pacific Region,,,,,,,,,,,,,8,9,13,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,12,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Macau,China,Western Pacific Region,,,,1,2,2,2,5,7,7,7,7,7,7,8,8,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Xizang,China,Western Pacific Region,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Unspecified*,China,Western Pacific Region,,,,131,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,China,Western Pacific Region,,278,309,571,830,1297,1985,2741,4537,5997,7736,9720,11821,14411,17238,20471,24363,28060,31211,34598,37251,40235,42708,44730,46550,48548,50054,51174,70635,72528,74280,74675,75569,76392,77042,77262,77780,78191,78630,78961,79394,79968,80174,80304,80422,80565,80711,80813,80859,80904,80924,80955,80981,80991,81021,81048,81077,81116,81116,81174,81300,81416,81498,81601,81747,81848,81961,82078,82230,82341,82447,82545,82631,82724,82802,82875,82930,83005,83071,83157,83249,83305,83369,83482,83597,83696,83745,83797,84149,84180,84201,84237,84250,84287,84302,84311,84324,84338,84341,84347,84369,84373,84385,84388,84393,84400,84404,84406,84409,84415,84416,84430,84450,84451,84458,84464,84469,84478,84484,84494,84500,84505,84507,84520,84522,84525,84536,84543,84544,84547,84547,84565,84570,84588,94597,84602,84603,84614,84620,84629,84634,84638,84641,84652,84659,84671,84729,84778,84823,84867,84903,84940,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Singapore,Western Pacific Region,,0,0,0,1,3,3,4,7,7,10,13,16,18,18,18,24,28,30,33,40,43,45,47,50,58,67,72,75,77,81,84,85,86,89,89,90,91,93,96,98,102,106,108,110,110,117,130,138,150,160,166,178,187,200,212,243,243,266,313,345,385,432,455,507,558,631,683,732,802,844,879,926,1000,1049,1114,1189,1309,1375,1481,1623,1910,2108,2299,2532,2918,3252,3699,4427,5050,5992,6588,8014,9125,10141,11178,12075,12693,13624,14423,14951,15641,16169,17101,17548,18205,18778,19410,20198,20939,21707,22460,23336,23822,24671,25346,26089,26891,27356,28038,28343,28794,29364,29812,30426,31068,31616,31960,32343,32876,33249,33860,34366,34884,35292,35836,36405,36922,37183,37527,37910,38296,38514,38965,39387,39850,40197,40604,40818,40969,41216,41473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Philippines,Western Pacific Region,,0,0,0,0,0,0,0,0,0,1,1,1,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,3,3,3,3,3,5,5,6,10,33,49,52,52,64,111,140,187,187,187,217,230,307,380,462,552,636,707,803,1075,1418,1546,2084,2311,2633,3018,3094,3246,3660,3764,3870,4076,4195,4428,4648,4932,5223,5453,5660,5878,6087,6259,6459,6599,6710,6981,7192,7294,7579,7777,7958,8212,8488,8772,8928,9223,9485,9684,10004,10343,10463,10610,10794,11086,11350,11618,11876,12091,12305,12513,12718,12942,13221,13434,13597,13777,14035,14319,14669,15049,15588,16634,17224,18086,18638,18997,19748,20382,20626,21340,21895,22474,22992,23732,24175,24787,25392,25930,26420,26781,27238,27799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Japan,Western Pacific Region,,1,1,1,1,3,3,4,6,7,11,14,17,20,20,20,33,25,25,25,26,26,26,28,29,33,41,53,59,65,73,85,93,105,132,144,157,164,186,210,230,239,254,268,284,317,349,408,455,488,514,568,620,675,716,780,814,829,829,873,950,996,1046,1089,1128,1193,1291,1387,1499,1693,1866,1953,2178,2384,2617,2920,3271,3654,3906,4257,4768,5347,6005,6748,7255,7645,8100,8582,9167,9795,10361,10751,11118,11496,11919,12388,12829,13182,13385,13576,13852,14088,14281,14545,14839,15057,15231,15354,15463,15547,15649,15747,15798,15874,16024,16079,16193,16237,16285,16305,16365,16385,16424,16513,16536,16550,16581,16623,16651,16683,16719,16804,16851,16884,16930,16986,17018,17064,17103,17141,17174,17210,17251,17292,17332,17382,17429,17502,17587,17628,17668,17740,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Republic of Korea,Western Pacific Region,,1,1,1,2,2,2,4,4,4,4,11,12,15,15,16,18,23,24,24,27,27,28,28,28,28,28,29,30,31,51,104,204,346,602,763,977,1261,1766,2337,3150,3736,4212,4812,5328,5766,6284,6767,7134,7382,7513,7755,7869,7979,8086,8162,8236,8320,8320,8413,8652,8799,8897,8961,9037,9137,9241,9332,9478,9583,9661,9786,9887,9976,10062,10156,10237,10284,10331,10384,10423,10450,10480,10512,10537,10564,10591,10613,10635,10653,10661,10674,10683,10694,10702,10708,10718,10728,10738,10752,10761,10765,10774,10780,10793,10801,10804,10806,10810,10822,10840,10874,10909,10936,10962,10991,11018,11037,11050,11065,11078,11110,11122,11142,11165,11190,11206,11225,11265,11344,11402,11441,11468,11503,11541,11590,11629,11668,11719,11776,11814,11852,11902,11947,12003,12051,12085,12121,12155,12198,12257,12306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Malaysia,Western Pacific Region,,0,0,0,0,0,3,4,4,4,7,8,8,8,8,10,10,12,14,15,17,18,18,18,18,19,21,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,24,29,50,50,55,83,93,93,117,129,129,129,197,238,553,553,553,673,900,1030,1183,1306,1518,1624,1796,2031,2161,2320,2470,2626,2766,2908,3116,3333,3483,3662,3793,3963,4119,4228,4346,4530,4683,4817,4987,5072,5182,5251,5305,5389,5424,5482,5532,5603,5691,5742,5780,5820,5851,5945,6002,6071,6176,6298,6353,6383,6428,6467,6535,6589,6656,6726,6742,6779,6819,6855,6872,6894,6941,6978,7009,7059,7137,7185,7245,7417,7604,7619,7629,7732,7762,7819,7857,7877,7970,8247,8266,8303,8322,8329,8336,8338,8369,8402,8445,8453,8494,8505,8515,8529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Australia,Western Pacific Region,,0,0,0,0,3,3,4,5,7,7,9,12,12,12,12,13,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,17,21,21,21,22,23,23,23,24,25,27,33,43,57,57,62,74,77,92,112,122,140,197,249,298,375,414,510,709,873,1081,1396,1709,2252,2799,2985,3635,3966,3966,4359,4707,4976,5224,5454,5635,5744,5844,5956,6052,6152,6238,6289,6322,6366,6416,6458,6468,6533,6586,6612,6625,6647,6643,6667,6687,6703,6713,6725,6738,6746,6762,6767,6783,6801,6825,6849,6875,6896,6914,6929,6941,6948,6964,6975,6989,7019,7036,7045,7060,7068,7079,7081,7095,7106,7109,7118,7133,7139,7150,7173,7185,7195,7204,7221,7229,7240,7251,7255,7260,7265,7267,7267,7285,7290,7302,7320,7335,7347,7370,7391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,New Zealand,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,4,5,5,5,5,5,5,5,6,6,6,11,11,20,39,53,66,102,102,189,262,338,416,476,552,600,647,723,774,824,872,911,943,969,992,1015,1035,1049,1064,1072,1078,1084,1086,1094,1098,1105,1107,1113,1112,1114,1117,1121,1122,1124,1126,1129,1132,1134,1136,1137,1137,1138,1139,1141,1142,1144,1147,1147,1147,1147,1148,1148,1149,1149,1153,1153,1153,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1154,1156,1156,1157,1157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Vietnam,Western Pacific Region,,0,0,0,2,2,2,2,2,2,2,5,6,7,8,9,10,10,12,13,14,14,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,21,30,31,35,39,39,48,53,57,61,61,66,85,91,94,113,123,134,141,153,169,179,188,203,207,218,233,239,240,241,245,249,251,255,257,258,262,265,266,267,268,268,268,268,268,268,268,268,270,270,270,270,270,270,270,270,270,271,271,271,271,288,288,288,288,288,288,288,288,313,318,320,324,324,324,324,324,325,325,326,327,327,327,327,328,328,328,328,328,328,329,329,329,332,332,332,332,332,334,334,334,335,335,342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mongolia,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,4,4,5,6,6,10,10,10,10,10,11,12,12,12,12,12,14,14,14,14,14,15,15,16,16,16,16,16,17,30,30,31,31,31,32,33,34,35,35,36,37,38,38,38,38,38,38,39,39,40,41,41,41,42,42,42,42,42,42,98,98,135,136,140,140,140,140,141,141,141,141,141,148,161,179,179,179,185,185,185,186,191,193,193,194,194,194,194,197,197,197,197,197,197,201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Brunei Darussalam,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,12,25,40,50,50,54,56,73,78,83,88,91,104,109,114,115,120,126,127,129,131,133,134,135,135,135,135,135,135,136,136,136,136,136,136,136,136,137,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,139,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cambodia,Western Pacific Region,,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,5,7,7,12,24,24,35,47,51,53,84,87,91,96,98,104,102,103,107,109,109,110,114,114,114,115,115,117,118,120,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,123,124,124,124,124,124,124,124,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,126,128,128,128,129,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Lao People's Democratic Republic,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,6,6,6,8,8,9,10,10,10,10,11,12,12,15,15,16,16,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Fiji,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,4,5,5,5,5,5,5,5,5,7,7,12,12,14,15,15,15,16,16,16,16,16,16,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Papua New Guinea,Western Pacific Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guam,Western Pacific Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,5,12,14,15,27,29,32,37,45,51,56,56,58,69,77,82,84,93,112,113,121,125,128,130,133,133,134,135,135,135,135,136,133,133,133,133,135,136,137,137,138,140,141,142,142,144,146,145,145,147,147,147,147,147,147,148,148,149,149,149,149,149,149,160,160,160,161,161,161,163,164,165,165,166,166,167,169,170,171,171,171,171,171,172,174,174,176,177,177,178,178,180,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,French Polynesia,Western Pacific Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,3,3,3,3,11,11,15,17,18,25,25,30,30,34,35,36,37,37,37,39,40,41,42,47,51,51,51,51,53,55,55,55,55,55,55,55,56,57,57,57,57,57,57,58,58,58,58,58,58,58,58,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,89,89,89,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Northern Mariana Islands,Western Pacific Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,6,8,8,8,8,8,8,11,11,11,11,11,11,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,16,16,19,19,19,19,19,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,23,24,26,26,26,27,28,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,New Caledonia,Western Pacific Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,5,8,10,14,14,15,15,15,15,16,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Russian Federation,European Region,,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,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,4,7,7,7,7,7,20,34,34,34,63,93,93,147,199,253,306,438,438,658,840,1036,1264,1534,1534,1837,2337,2777,3548,4149,4731,5389,6343,7497,10131,11917,13584,15770,18328,21102,24490,27938,32008,36793,42853,42853,52763,57999,62772,68622,68622,74588,87147,93558,99399,106498,114431,124054,134687,145268,155370,165929,177160,187859,198676,209688,221344,232243,242271,252245,262843,272043,281752,290678,299914,308705,317554,326448,335882,344481,353427,362342,370680,379051,387623,396575,405843,414878,423741,432277,441108,449834,458689,467673,476658,485253,493657,502436,511423,520129,528964,537210,545458,553301,561091,569063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,The United Kingdom,European Region,,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,3,4,8,8,9,9,9,9,9,9,9,9,9,9,9,9,13,13,13,16,20,23,36,39,51,89,118,167,210,277,323,373,460,594,802,1144,1395,1547,1954,2630,3277,3983,5018,5687,6654,8081,9533,11662,14547,17093,19526,22145,25154,29478,33722,38172,41907,47810,51612,55246,60737,65081,70276,78995,84283,88625,93877,98480,103097,108696,114221,120071,124747,129048,133499,138082,143468,148381,152844,157153,161149,165225,171257,177458,182264,186603,190588,194994,201205,206719,211368,215264,219187,223064,226467,229709,233155,236715,240165,243699,246410,248822,248297,250912,254199,257158,259563,261188,265231,267244,269131,271226,272830,274766,276336,277989,279860,281665,283315,284872,286198,287403,289144,290147,291413,292954,294379,295893,296861,298140,299255,300473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Spain,European Region,,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,12,25,32,45,45,114,151,198,257,374,430,589,1024,1639,2140,2965,4231,5753,7753,9191,11178,13716,17147,19980,24926,28572,33089,39673,47610,56188,64059,72248,78797,85195,94417,102136,110238,117710,124736,130759,135032,140510,146690,152446,157022,161852,166019,169496,172541,177633,182816,188068,191726,195944,200210,204178,208389,213024,219764,219764,207634,209465,210773,212917,213435,215216,216582,217466,218011,219329,220325,221447,222857,223578,224390,227436,228030,228691,229540,230183,230698,231350,231606,232037,232555,233037,234824,235290,235772,235400,236631,237141,238278,238936,239600,239801,240010,240304,240326,240660,240978,241310,241550,241717,241966,242280,242707,243209,243605,243928,244109,244328,244683,245268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Italy,European Region,,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,9,76,124,229,322,400,650,888,1128,1689,2036,2502,3089,3858,4636,5883,7375,9172,10149,12462,15113,17660,21157,24747,27980,31506,35713,41035,47021,53578,59138,63927,69176,74386,80539,86498,92472,97689,101739,105792,110574,115242,119827,124632,128948,132547,135586,139422,143626,147577,152271,156363,159516,162488,165155,168941,172434,175925,178972,181228,183957,187327,189973,192994,195351,197675,199414,201505,203591,205463,207428,209328,210717,211938,213013,214457,215858,217185,218268,219070,219814,221216,222104,223096,223885,224760,225435,225886,226699,227364,228006,228658,229327,229858,230158,230555,231139,231732,232248,232664,233019,233197,233515,233836,234013,234531,234801,234998,235278,235561,235763,236142,236305,236651,236989,237290,237500,237828,238159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Germany,European Region,,0,0,0,0,0,0,0,1,4,4,5,7,8,10,12,12,12,13,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,18,21,26,57,57,129,157,196,262,534,639,795,1112,1139,1296,1567,2369,3062,3795,4838,6012,7156,8198,10999,18323,21463,24774,29212,31554,36508,42288,48582,52547,57298,61913,67366,73522,79696,85778,91714,95391,99225,103228,108202,113525,117658,120479,123016,125098,127584,130450,133830,137439,139897,141672,143457,145694,148046,150383,152438,154175,155193,156337,157641,159119,159119,161703,162496,163175,163860,164897,166091,167300,168551,169218,169575,170508,171306,172239,173152,173772,174355,174697,175210,176007,176752,177212,177850,178281,178570,179002,179364,179717,180458,181196,181482,181815,182028,182370,182764,183271,183678,183979,184193,184543,184861,185416,185674,186022,186269,186461,186839,187184,187764,187764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Turkey,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,5,5,47,47,191,191,670,947,1236,1529,1872,2433,3629,5698,7402,9271,10827,13531,15679,18135,20921,23934,27069,30217,34109,38226,42282,47029,52167,56956,61049,65111,69392,74193,78546,82329,86306,90980,95591,98674,101790,104912,107773,110130,112261,114653,117589,120204,122392,124375,126045,127659,129491,131744,133721,135569,137115,138657,139771,141475,143114,144749,146457,148067,149435,150593,151615,152587,153548,154500,155686,156827,157814,158762,159797,160979,162120,163103,163942,164769,165555,166422,167410,168340,169218,170132,171121,172114,173036,174023,175218,176677,178239,179831,181298,182727,184031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,France,European Region,,0,0,0,0,3,3,3,3,4,5,6,6,6,6,6,6,6,6,6,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,18,38,57,100,100,191,212,282,420,613,706,1116,1402,1774,2269,2860,3640,4469,5380,6573,7652,9043,10877,12475,14296,15821,19615,22025,24920,28786,32542,37145,39642,43977,51477,56261,58327,63536,67757,69607,73488,77226,81095,85351,89683,92787,94382,97050,102533,105155,107778,108163,110721,111463,113513,116151,117961,119583,121338,122875,123279,127008,125464,127066,128121,128722,129458,129708,130242,131292,135468,135980,136578,137008,137073,137491,138161,138609,139152,139646,140008,140036,140497,140959,141312,141590,141949,142173,142204,142482,142704,142852,146122,146657,148436,148524,148775,147935,148263,148941,149495,150022,150315,150413,150748,151145,151503,152067,152460,152767,152819,153045,153356,153557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Belgium,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,23,50,109,169,200,239,267,314,314,599,689,1085,1085,1486,1486,1795,2257,2815,3401,3743,4269,4937,6235,7284,9134,10836,11899,12775,13964,15348,16770,18431,19691,20814,22194,23403,24983,26667,28018,29647,30589,31119,33573,34809,36138,37183,38496,39983,40956,41889,42797,44293,45325,46134,46687,47334,47859,48519,49032,49517,49906,50267,50509,50781,51420,52011,52596,53081,53449,53779,53981,54288,54644,54989,55280,55559,55791,55983,56235,56511,56810,57092,57342,57455,57592,57849,58061,58186,58381,58517,58615,58685,58767,58907,59072,59226,59348,59437,59569,59711,59819,59918,60029,60100,60155,60244,60348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Netherlands,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,13,18,28,38,82,128,188,265,321,382,503,614,804,959,1135,1413,1705,2051,2460,2994,3631,4204,4749,5560,6412,7431,8603,9762,10866,11750,12595,13614,14697,15723,16627,17851,18803,19580,20549,21762,23097,24413,25587,26551,27419,28153,29214,30449,31589,32655,33405,34134,34842,35729,36535,37190,37845,38245,38416,38802,39316,39791,40236,40571,40770,41087,41319,41774,42093,42382,42627,42788,42984,43211,43481,43681,43870,43995,44141,44249,44447,44700,44888,45064,45236,45445,45578,45768,45950,46126,46257,46442,46545,46647,46733,46942,47152,47335,47574,47739,47903,48087,48251,48461,48640,48783,48783,49087,49204,49319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Belarus,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,6,6,6,9,12,12,21,21,36,36,36,46,46,57,76,76,81,81,86,86,94,94,152,152,152,192,254,254,440,562,700,861,1066,1066,1981,2226,2578,2919,3281,3728,4204,4779,4779,4779,6264,6723,7281,8022,8773,9590,10463,12208,12208,13187,14027,14917,15828,17489,17489,19255,19255,20168,21101,22973,23906,23906,25840,25840,26772,27730,28681,29650,30572,31508,33371,34303,34303,35244,36198,37144,38059,38956,39858,40764,41658,42556,43403,44255,45116,45981,46868,46868,48630,49453,50265,51066,51816,52520,53241,53973,54680,55369,56032,56657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sweden,European Region,,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,7,12,13,14,15,24,35,61,137,161,203,248,326,461,620,775,924,992,1059,1167,1279,1423,1623,1746,1906,2016,2272,2510,2806,3046,3447,3700,4028,4435,4947,5466,6078,6443,6830,7206,7693,8419,9141,9685,10151,10483,10948,11445,11927,12540,13216,13822,14385,14777,15322,16004,16755,17567,18177,18640,18926,19621,20302,21092,21520,22082,22317,22721,23216,23918,24623,25265,25921,26322,26670,27272,27909,28582,29207,29677,30143,30377,30799,31523,32172,32809,33188,33459,33843,34440,35088,35727,36476,37113,37542,37814,38589,40803,41883,42939,43887,44730,45133,45924,46814,48288,49684,50931,51614,52383,53323,54562,56043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Portugal,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,7,9,13,21,30,30,41,41,41,112,112,245,331,448,642,785,1020,1280,1600,2060,2362,2995,3544,4268,5170,5962,6408,7443,8251,9034,9886,10524,11278,11730,12442,13141,13956,15472,15987,16585,16934,17448,18091,18841,19022,19685,20206,20863,21379,21982,22353,22797,23392,23864,24027,24322,24505,25056,25351,25190,25282,25524,25702,26182,26715,27268,27406,27581,27679,27913,28132,28319,28583,28810,29036,29209,29432,29660,29912,30200,30471,30623,30788,31007,31292,31596,31946,32203,32500,32700,32895,33261,33592,33969,34351,34493,34885,35306,35600,35910,36180,36463,36690,37036,37336,37672,38089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Switzerland,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,10,18,26,30,27,56,86,209,264,332,332,491,645,858,1125,1359,2200,2200,2650,3010,3863,4840,6077,6971,8015,8789,9714,10714,12104,13152,14274,15412,16108,17070,18844,19706,20489,21065,21574,22164,22710,23495,24228,24820,25220,25499,25753,26336,26651,26997,27322,27658,27862,27981,28186,28414,28595,28978,28978,29081,29181,29324,29503,29622,29734,29822,29898,29926,29977,30043,30168,30168,30222,30261,30297,30330,30380,30431,30489,30504,30514,30535,30575,30611,30624,30642,30653,30663,30678,30693,30713,30745,30762,30779,30788,30791,30810,30830,30853,30873,30882,30889,30905,30928,30961,30980,31011,31034,31048,31063,31100,31117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Ireland,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,14,18,19,21,24,34,43,70,90,129,169,223,292,292,557,683,785,906,1125,1329,1564,1819,2121,2415,2615,2910,3235,3447,3849,4273,4604,5111,5364,5709,6224,7393,8089,8928,9655,10647,11479,12547,13271,13980,14758,15251,15652,16040,16671,17607,18184,18561,19262,19648,19877,20253,20612,20833,21176,21506,21722,21983,22248,22385,22541,22760,22996,23135,23242,23401,23827,23956,24048,24112,24200,24251,24315,24391,24506,24582,24639,24698,24735,24803,24841,24876,24929,24990,25062,25066,25111,25142,25163,25183,25201,25207,25215,25231,25238,25250,25295,25303,25321,25334,25341,25355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Ukraine,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,3,3,3,7,14,16,16,26,47,47,84,113,156,218,311,418,480,549,669,804,987,1096,1251,1319,1462,1668,1892,2203,2511,2777,3102,3372,3764,4162,4662,5106,5449,5710,6125,6592,7170,7647,8125,8617,9009,9410,9866,10406,10861,11411,11913,12331,12697,13184,13691,14195,14710,15232,15648,16023,16425,16847,17330,17858,18291,18616,18876,19230,19706,20148,20580,20986,21245,21584,21905,22382,22811,23204,23672,24012,24340,24823,25411,25964,26514,26999,27462,27856,28381,29070,29753,30506,31154,31810,32476,33234,34063,34984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Poland,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,6,11,16,22,44,49,64,111,150,150,246,287,325,425,536,634,749,901,1051,1221,1389,1638,1862,2055,2311,2554,2946,3383,3627,4102,4413,4848,5205,5575,5955,6356,6674,6934,7202,7582,7918,8379,8742,9287,9593,9856,10169,10511,10892,11273,11617,11902,12218,12640,12877,13105,13375,13693,14006,14431,14740,15047,15366,15651,15996,16326,16921,17204,17615,18016,18257,18529,18885,19268,19739,20143,20619,20931,21326,21631,22074,22473,22825,23155,23571,23786,24165,24395,24395,25048,25419,25986,26561,27160,27560,27757,28201,28577,29017,29392,29788,30195,30701,31015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Romania,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,3,3,4,4,6,7,13,15,15,25,48,48,64,123,158,158,184,246,260,308,367,433,576,762,906,1029,1292,1452,1760,1952,2245,2460,2738,3183,3613,3864,4057,4417,4761,5202,5467,5990,6300,6633,6879,7216,7707,8067,8418,8746,8936,9242,9710,10096,10417,10635,11036,11339,11616,11978,12240,12567,12732,13163,13512,13837,14107,14499,14811,15131,15362,15588,15778,16002,16247,16437,16704,16871,17036,17191,17387,17585,17712,17857,18070,18283,18429,18594,18791,18982,19133,19257,19398,19517,19669,19907,20103,20290,20479,20604,20749,20945,21182,21404,21679,21999,22165,22415,22760,23080,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Israel,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,3,5,7,7,10,12,15,15,19,25,39,39,75,75,75,100,178,200,250,304,427,529,712,883,1071,1238,2170,2369,3035,3460,3865,4247,4831,5129,5591,6211,7030,7589,8018,8611,9404,9404,9755,10095,10525,10878,11235,11868,12200,12591,12855,13107,13362,13883,13942,14498,14803,15028,15398,15398,15466,15782,15782,16004,16152,16152,16152,16237,16268,16314,16346,16444,16444,16492,16526,16539,16539,16567,16589,16608,16607,16621,16650,16659,16690,16690,16712,16712,16720,16743,16771,16809,16809,17012,17071,17071,17071,17219,17495,17562,17706,17783,17915,18089,18268,18461,18701,18876,19008,19121,19121,19637,19876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Austria,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,5,10,10,18,24,37,47,66,104,112,131,182,302,361,504,800,959,1132,1332,1646,1843,2649,3024,3631,4486,5282,5888,7029,7697,8291,8813,9618,10182,10711,11129,11525,11766,11983,12297,12640,12969,13248,13560,13807,13937,14043,14234,14370,14448,14603,14662,14710,14783,14833,14924,14985,15068,15134,15189,15256,15314,15264,15457,15531,15558,15597,15621,15586,15651,15673,15735,15777,15787,15874,15910,15964,16005,16068,16140,16154,16179,16257,16275,16332,16361,16407,16439,16459,16497,16515,16543,16594,16638,16642,16663,16674,16705,16741,16803,16822,16868,16889,16902,16936,16964,16994,17014,17038,17065,17098,17115,17155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Denmark,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,4,5,8,10,18,23,31,36,90,262,615,674,801,827,898,960,977,1044,1132,1255,1326,1395,1460,1591,1724,1877,2046,2201,2395,2577,2860,3107,3386,3757,4077,4369,4681,5071,5402,5635,5819,5996,6174,6318,6511,6681,6879,7073,7242,7384,7515,7695,7912,8073,8210,8445,8575,8698,8851,9008,9158,9311,9407,9523,9670,9821,9983,10083,10218,10319,10429,10513,10591,10667,10713,10791,10858,10927,10968,11044,11117,11182,11230,11289,11360,11387,11428,11480,11512,11593,11633,11669,11699,11734,11771,11811,11875,11924,11948,11962,12001,12016,12035,12099,12139,12193,12217,12250,12294,12344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Kazakhstan,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,33,36,46,53,56,60,63,79,97,125,204,265,294,312,348,386,435,460,531,604,670,709,727,802,859,897,979,1091,1275,1295,1480,1546,1546,1546,1852,1995,2025,2025,2416,2601,2791,2982,3078,3333,3551,3785,3877,3988,4160,4298,4509,4605,4922,5056,5138,5207,5417,5571,5689,5850,6157,6440,6751,6969,7234,7597,7919,8322,8531,8969,9304,9576,9932,10382,10858,11308,11571,11796,12067,12312,12511,12694,12859,13074,13319,13559,13872,14238,14496,14809,15192,15542,15877,16351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Serbia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,12,19,19,31,41,46,70,85,96,123,135,173,188,249,303,384,457,528,659,741,785,900,1060,1171,1476,1624,1908,2200,2447,2666,2867,3105,3380,3630,4054,4465,4873,5318,5690,5994,6318,6630,6890,7114,7276,7483,7779,8042,8275,8497,8724,9009,9205,9362,9464,9557,9677,9791,9848,9943,10032,10114,10176,10243,10295,10374,10438,10496,10610,10699,10733,10833,10919,11024,11092,11159,11193,11227,11275,11300,11354,11381,11412,11430,11454,11523,11571,11667,11741,11823,11896,11965,12031,12102,12175,12251,12310,12367,12426,12522,12616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Armenia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,8,8,26,52,52,84,122,136,160,190,235,265,290,329,372,424,482,482,532,571,640,736,746,746,833,877,921,937,937,1013,1039,1039,1067,1135,1159,1201,1248,1291,1339,1377,1473,1523,1596,1746,1808,1867,1932,2066,2148,2273,2386,2507,2619,2782,2884,3029,3175,3313,3392,3538,3718,3836,4044,4283,4472,4823,5041,5271,5606,5928,6302,6661,7113,7402,7774,8216,8676,8927,9282,9492,10009,10524,11221,11817,12364,13130,13325,13675,14103,14669,15281,16004,16667,17064,17489,18033,18698,19157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Czechia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,5,5,12,12,26,32,38,61,94,116,150,214,298,383,434,522,694,904,995,1165,1236,1394,1654,2062,2279,2663,2829,3002,3308,3589,3858,4190,4472,4587,4822,5017,5312,5569,5732,5902,5991,6059,6141,6303,6433,6549,6654,6787,6914,7041,7136,7188,7273,7352,7404,7449,7504,7579,7682,7737,7755,7781,7819,7896,7974,8031,8077,8095,8123,8176,8221,8269,8351,8406,8455,8475,8586,8647,8721,8754,8813,8890,8957,9002,9050,9086,9140,9196,9230,9273,9302,9364,9438,9494,9529,9567,9628,9697,9751,9824,9886,9938,9991,10024,10064,10111,10162,10230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Norway,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,6,15,19,25,33,56,86,113,147,169,192,277,277,489,750,907,1077,1169,1308,1423,1552,1742,1926,2132,2371,2566,2916,3156,3581,3845,4102,4226,4447,4665,4935,5208,5510,5640,5755,5863,6010,6160,6244,6320,6415,6488,6566,6677,6791,6791,6984,7086,7113,7166,7250,7345,7408,7467,7505,7533,7605,7667,7710,7759,7759,7809,7847,7903,7953,7995,8034,8069,8099,8106,8135,8158,8175,8197,8197,8197,8249,8257,8268,8268,8309,8309,8309,8352,8364,8383,8401,8411,8411,8411,8411,8446,8446,8477,8504,8504,8504,8547,8563,8576,8594,8606,8606,8606,8631,8631,8660,8692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Republic of Moldova,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,4,4,8,12,23,29,30,36,49,66,80,94,109,125,149,177,199,231,263,298,353,423,591,591,752,864,965,1056,1174,1289,1438,1560,1662,1712,1934,2049,2154,2264,2351,2472,2548,2641,2778,2926,3110,3304,3408,3481,3638,3771,3897,3980,4052,4121,4248,4363,4476,4578,4728,4867,4927,4995,5154,5406,5553,5745,5934,6060,6138,6340,6553,6704,6847,6994,7093,7149,7305,7537,7725,7896,8098,8251,8360,8548,8795,9018,9247,9511,9700,9807,10025,10321,10727,11093,11459,11740,11879,12254,12732,13106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Finland,European Region,,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,7,7,7,12,19,19,30,40,40,40,109,109,210,267,272,319,359,369,450,521,626,700,792,880,958,1025,1218,1218,1313,1384,1446,1518,1615,1882,1927,2176,2308,2487,2605,2769,2905,2974,3064,3161,3237,3369,3489,3681,3783,3868,4014,4129,4284,4395,4475,4576,4695,4740,4906,4995,5051,5179,5254,5327,5412,5573,5673,5738,5880,5962,5984,6003,6054,6145,6228,6286,6347,6380,6399,6443,6493,6537,6568,6579,6599,6628,6692,6743,6776,6826,6859,6885,6887,6911,6911,6941,6964,6981,7001,7025,7040,7064,7073,7087,7104,7108,7112,7117,7117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Azerbaijan,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,9,9,9,9,9,9,11,11,19,19,19,21,34,34,44,53,65,72,87,93,122,147,164,190,273,298,359,400,443,512,584,641,717,822,926,991,1058,1098,1148,1197,1253,1283,1340,1373,1398,1436,1480,1518,1548,1592,1617,1645,1678,1717,1766,1804,1854,1894,1932,1984,2060,2127,2204,2279,2422,2519,2589,2693,2758,2879,2980,3138,3274,3387,3518,3631,3749,3855,3982,4122,4271,4403,4568,4759,4989,5246,5494,5662,5935,6260,6522,6860,7239,7553,7876,8191,8530,8882,9218,9570,9957,10324,10662,10991,11329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Luxembourg,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,5,5,17,17,38,38,38,81,140,210,345,484,670,798,875,1099,1333,1453,1605,1831,1950,1988,2178,2319,2487,2612,2729,2804,2843,2970,3034,3115,3223,3270,3281,3292,3307,3373,3444,3480,3537,3550,3558,3618,3654,3665,3695,3711,3723,3729,3741,3769,3784,3802,3812,3824,3828,3840,3851,3859,3871,3877,3886,3888,3894,3904,3915,3923,3930,3945,3947,3958,3971,3980,3981,3990,3992,3993,3995,4001,4008,4012,4016,4018,4019,4020,4020,4027,4032,4035,4039,4040,4046,4049,4052,4055,4063,4070,4072,4075,4085,4091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Tajikistan,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,32,76,128,230,293,379,461,522,561,612,661,729,729,1085,1118,1322,1322,1729,1936,2140,2350,2551,2738,2929,3100,3266,3424,3563,3686,3807,3930,4013,4100,4191,4289,4370,4453,4529,4609,4690,4763,4834,4902,4971,5035,5097,5160,5221,5279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Hungary,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,7,9,9,13,13,16,19,32,39,50,50,58,73,85,131,167,187,226,261,300,343,408,447,447,492,525,585,678,733,744,817,895,980,1190,1310,1410,1458,1512,1579,1652,1763,1834,1916,1984,2098,2168,2284,2383,2443,2500,2538,2649,2727,2775,2863,2942,2998,3035,3065,3111,3150,3178,3213,3263,3284,3313,3341,3380,3417,3473,3509,3535,3556,3598,3641,3678,3713,3741,3756,3771,3793,3816,3841,3841,3867,3876,3921,3931,3931,3954,3970,3970,3970,4014,4017,4027,4039,4053,4064,4076,4077,4078,4079,4081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Uzbekistan,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,16,16,21,33,33,46,46,50,65,83,104,133,145,149,173,190,221,241,298,390,472,534,555,624,624,796,896,1054,1214,1349,1380,1450,1495,1565,1657,1657,1716,1778,1836,1865,1887,1924,1955,2031,2046,2094,2127,2160,2189,2217,2266,2314,2336,2387,2411,2509,2598,2620,2652,2691,2741,2762,2802,2880,2950,3006,3078,3132,3180,3261,3333,3396,3463,3513,3554,3662,3718,3718,3874,3965,4022,4181,4352,4448,4547,4695,4819,4901,4994,5103,5293,5561,5697,5855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Greece,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,3,7,7,7,9,32,32,66,73,73,89,98,98,98,228,331,331,387,418,418,495,530,624,695,743,821,892,966,1061,1156,1212,1314,1375,1514,1613,1673,1735,1755,1832,1884,1955,2011,2081,2114,2145,2170,2192,2207,2207,2207,2235,2245,2401,2408,2463,2490,2506,2506,2534,2534,2576,2591,2591,2620,2626,2632,2642,2663,2678,2691,2710,2716,2726,2744,2760,2770,2810,2819,2834,2836,2840,2850,2853,2873,2876,2878,2882,2892,2903,2906,2909,2915,2917,2917,2918,2937,2937,2937,2952,2952,3049,3058,3068,3088,3108,3112,3121,3134,3148,3203,3227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bosnia and Herzegovina,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,4,4,4,11,18,18,19,19,36,44,44,92,125,131,164,173,213,233,269,325,359,413,464,521,586,632,662,695,781,816,875,901,948,1007,1034,1086,1116,1169,1210,1268,1286,1300,1340,1367,1413,1428,1485,1516,1564,1588,1689,1757,1757,1757,1857,1926,1968,2017,2027,2070,2070,2098,2142,2162,2181,2216,2237,2265,2289,2303,2319,2334,2352,2371,2371,2391,2405,2415,2415,2462,2484,2493,2509,2523,2534,2550,2593,2605,2645,2673,2703,2727,2776,2831,2892,2892,3001,3039,3084,3144,3202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bulgaria,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,4,6,7,7,7,43,51,67,81,92,94,127,163,185,201,220,242,264,293,331,346,359,399,422,457,485,503,531,549,577,593,624,635,661,675,685,713,747,800,846,878,915,929,975,1024,1097,1188,1247,1300,1363,1399,1447,1506,1588,1594,1618,1652,1689,1778,1801,1911,1955,1965,1990,2023,2069,2100,2138,2211,2235,2259,2292,2331,2372,2551,2408,2433,2433,2460,2460,2485,2499,2513,2513,2513,2538,2585,2585,2668,2711,2727,2810,2889,2889,3086,3191,3266,3290,3341,3453,3542,3674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,North Macedonia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,3,3,7,7,7,7,9,13,13,19,31,36,48,70,85,114,136,148,177,201,219,241,259,285,329,354,384,430,483,555,570,599,617,663,711,828,828,854,908,974,1081,1117,1170,1207,1225,1231,1259,1300,1326,1367,1386,1399,1421,1442,1465,1494,1506,1511,1518,1526,1539,1572,1586,1622,1642,1664,1674,1694,1723,1740,1762,1792,1817,1839,1858,1898,1921,1941,1978,1999,2015,2040,2078,2130,2164,2226,2315,2391,2492,2612,2792,2915,3028,3155,3242,3367,3542,3706,3902,4057,4157,4289,4482,4664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Croatia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,5,7,7,9,9,9,10,11,11,11,12,16,16,16,27,37,49,56,65,81,81,126,206,235,306,382,418,495,586,657,713,790,867,963,1011,1079,1126,1182,1222,1282,1343,1407,1495,1534,1600,1650,1704,1741,1791,1814,1832,1871,1881,1908,1950,1981,2009,2016,2030,2039,2047,2062,2076,2085,2088,2096,2101,2112,2119,2125,2161,2176,2187,2196,2207,2213,2221,2222,2224,2226,2228,2232,2234,2237,2243,2243,2244,2244,2244,2244,2245,2245,2246,2246,2246,2246,2246,2247,2247,2247,2247,2247,2247,2249,2249,2249,2251,2252,2254,2255,2258,2269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Estonia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,10,10,10,10,13,13,13,79,79,205,205,225,258,267,283,306,326,352,369,404,538,575,640,679,715,745,779,858,961,1018,1097,1108,1149,1185,1207,1258,1304,1309,1332,1373,1402,1434,1459,1512,1528,1535,1552,1559,1592,1605,1635,1643,1647,1660,1666,1689,1694,1699,1700,1703,1711,1713,1720,1725,1733,1739,1741,1746,1751,1758,1766,1770,1774,1784,1791,1794,1800,1807,1821,1823,1824,1834,1840,1851,1859,1865,1869,1870,1870,1880,1890,1910,1931,1939,1940,1947,1958,1965,1970,1973,1973,1974,1975,1977,1977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Kyrgyzstan,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,6,14,14,16,42,44,58,58,84,84,107,111,115,130,144,147,216,228,270,280,298,339,377,419,430,449,466,489,506,554,568,590,612,631,656,665,682,695,708,729,746,756,769,795,830,843,871,895,906,931,1002,1016,1037,1044,1082,1111,1117,1138,1216,1243,1270,1313,1350,1365,1403,1433,1468,1520,1594,1662,1722,1748,1817,1845,1871,1899,1936,1974,2007,2032,2055,2093,2129,2166,2207,2285,2372,2472,2562,2657,2789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Iceland,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,16,26,26,45,45,55,55,61,61,61,61,138,138,199,225,250,330,409,473,568,588,648,737,802,890,963,1020,1086,1135,1220,1319,1364,1417,1486,1562,1586,1616,1648,1675,1689,1701,1711,1720,1727,1739,1754,1760,1771,1773,1778,1785,1789,1789,1790,1792,1792,1795,1797,1797,1798,1798,1799,1799,1799,1799,1829,1801,1801,1801,1801,1801,1802,1802,1802,1802,1802,1802,1802,1803,1803,1803,1804,1804,1804,1804,1805,1805,1805,1806,1806,1806,1806,1806,1806,1806,1806,1807,1807,1807,1807,1807,1807,1808,1810,1810,1812,1815,1816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Lithuania,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,6,9,14,17,25,26,36,69,105,143,179,209,274,299,358,394,484,484,533,581,649,771,771,811,843,880,912,955,999,1053,1062,1070,1070,1091,1149,1239,1298,1326,1350,1370,1398,1410,1410,1438,1449,1449,1449,1375,1385,1399,1406,1410,1419,1423,1428,1433,1436,1444,1479,1485,1491,1505,1511,1523,1534,1541,1547,1562,1577,1594,1604,1616,1623,1635,1639,1647,1656,1662,1670,1675,1678,1682,1684,1687,1694,1705,1714,1720,1727,1733,1752,1756,1763,1768,1773,1776,1778,1784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Slovakia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,7,7,10,21,30,44,61,72,97,105,123,137,178,185,191,204,216,226,295,295,336,336,363,400,426,450,471,485,534,598,682,701,715,728,742,769,835,863,977,1049,1089,1161,1173,1199,1244,1325,1360,1373,1379,1381,1384,1391,1396,1403,1407,1408,1413,1421,1429,1445,1455,1455,1457,1457,1465,1469,1477,1480,1493,1494,1495,1495,1496,1502,1503,1504,1509,1511,1513,1515,1520,1520,1521,1522,1522,1522,1525,1526,1526,1528,1528,1530,1531,1533,1541,1542,1545,1548,1552,1552,1561,1562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Slovenia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,9,12,16,23,31,57,57,141,141,219,253,275,286,319,341,383,414,442,480,528,577,632,691,730,763,814,841,897,934,977,997,1021,1055,1091,1124,1160,1188,1205,1212,1220,1248,1268,1049,1317,1330,1173,1340,1353,1325,1373,1388,1407,1407,1408,1418,1429,1434,1439,1439,1439,1445,1448,1449,1450,1454,1457,1460,1461,1463,1464,1465,1465,1466,1466,1467,1468,1468,1478,1478,1509,1469,1469,1471,1473,1273,1473,1473,1483,1475,1477,1477,1489,1494,1485,1485,1486,1488,1488,1490,1492,1495,1496,1509,1513,1511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Albania,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,10,10,23,33,38,42,51,55,59,70,70,76,89,123,146,174,186,197,212,223,223,243,277,277,333,333,377,377,400,409,416,416,446,446,475,475,494,518,548,548,562,609,634,634,678,678,712,726,736,766,773,773,789,795,795,803,832,832,850,856,868,868,872,876,880,898,933,946,948,948,964,969,969,981,989,1004,1029,1050,1076,1099,1122,1136,1143,1164,1176,1197,1212,1232,1246,1263,1299,1341,1385,1416,1464,1521,1590,1672,1722,1788,1838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Latvia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3,6,8,16,16,16,30,31,36,60,71,86,111,124,139,180,197,221,244,280,305,376,376,398,446,458,493,509,533,542,548,577,589,612,630,651,655,657,666,675,682,712,727,739,748,761,778,784,804,812,818,836,849,858,870,871,879,896,896,900,909,928,930,939,946,950,951,962,970,997,1008,1009,1012,1016,1025,1030,1046,1047,1049,1053,1057,1061,1064,1065,1066,1071,1079,1079,1082,1082,1086,1088,1088,1089,1092,1094,1096,1097,1097,1097,1098,1104,1108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cyprus,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,6,6,14,21,33,33,33,58,58,67,84,95,116,124,132,146,162,179,214,230,262,320,356,396,426,446,465,494,526,564,595,616,633,662,695,715,735,735,761,767,772,784,790,795,804,810,817,822,837,843,850,857,864,872,874,878,883,889,891,892,898,901,903,905,907,910,914,916,917,918,922,923,927,927,935,937,939,939,941,941,943,944,949,952,958,958,960,960,964,970,972,974,975,980,980,983,985,985,985,985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Georgia,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,3,3,3,3,9,9,12,13,15,23,23,25,25,30,33,33,34,38,38,43,49,54,67,73,77,81,85,90,98,103,115,121,148,157,170,188,195,208,214,230,233,252,266,296,306,336,370,385,394,399,408,411,420,431,456,485,496,511,517,539,566,582,589,593,604,610,614,632,626,635,638,639,642,652,671,677,695,701,702,713,721,723,723,730,731,732,735,738,746,757,783,794,796,800,801,806,808,809,810,818,822,828,837,851,864,879,879,888,893,895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Andorra,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,14,16,39,75,75,88,113,164,188,213,231,289,321,341,370,376,396,429,442,466,523,540,551,566,589,602,622,639,651,659,673,694,703,704,717,718,723,724,726,733,738,740,748,753,753,746,746,747,749,751,751,752,752,754,754,756,756,759,761,761,761,761,761,761,761,762,762,762,763,763,763,763,763,764,764,764,764,765,844,851,852,852,852,852,852,852,852,852,853,853,853,853,854,854,855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,San Marino,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,8,8,16,21,24,27,37,49,63,63,63,66,92,92,102,104,109,126,151,151,151,187,187,208,218,228,228,229,230,236,236,245,252,259,266,277,279,308,344,344,356,356,371,372,393,426,426,455,461,462,476,488,501,513,513,538,538,553,563,569,580,580,582,582,589,608,623,632,632,637,647,647,647,647,652,652,668,668,668,670,672,672,672,672,672,672,672,687,687,687,687,687,687,687,695,695,695,695,695,695,695,695,695,695,695,695,695,709,709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Malta,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,6,9,12,12,21,30,38,48,53,64,73,90,107,120,129,134,139,139,151,156,167,188,195,202,213,234,241,293,299,337,350,370,378,384,393,399,412,422,426,427,431,443,444,445,447,448,448,450,450,463,465,467,467,477,480,482,484,486,489,490,496,503,503,508,522,532,546,553,558,560,584,599,600,609,610,611,611,615,616,616,616,616,619,620,622,622,622,622,629,630,634,635,640,645,646,646,649,656,662,663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Montenegro,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,10,14,14,21,22,29,52,67,70,82,85,91,105,120,140,160,197,203,223,248,248,252,255,262,267,274,288,288,303,305,308,308,312,313,314,316,319,319,321,321,321,322,322,322,322,322,323,324,324,324,324,324,325,325,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,324,325,326,326,333,337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Monaco,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,9,9,9,9,12,18,23,23,23,23,19,19,19,46,49,52,37,37,37,37,37,40,40,54,54,54,54,54,93,93,93,93,98,98,98,68,68,68,68,68,68,68,68,68,68,68,68,68,95,95,95,95,95,95,95,96,96,96,96,96,96,96,96,96,96,96,96,96,98,98,98,98,98,98,98,98,98,98,98,98,98,98,99,99,99,99,99,99,99,99,99,99,99,99,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Liechtenstein,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,4,4,7,7,7,25,25,34,36,46,46,47,51,56,60,61,62,64,68,72,75,76,77,78,78,78,79,79,80,80,80,80,81,81,81,81,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Holy See,European Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,6,6,6,6,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,10,10,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Kosovo,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,94,106,112,125,126,132,140,145,165,184,224,227,250,283,362,377,387,397,449,480,510,535,572,604,630,669,703,731,763,780,790,799,799,813,823,851,855,856,860,861,862,870,870,884,919,919,944,944,944,955,955,989,989,1003,1004,1025,1032,1038,1038,1047,1048,1048,1064,1064,1067,1080,1142,1142,1142,1151,1191,1263,1263,1298,1326,1326,1437,1443,1572,1713,1790,1873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Isle of Man,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,13,23,23,26,29,32,42,42,52,65,71,114,126,127,127,150,150,165,190,204,226,228,242,254,258,289,291,297,297,307,307,307,308,308,308,308,308,309,311,311,315,320,321,325,326,327,329,329,330,330,330,331,331,333,334,335,335,335,335,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Jersey,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,5,5,5,12,12,15,16,16,18,32,52,61,63,63,63,81,81,118,123,155,155,170,170,170,183,198,198,213,217,217,219,223,234,245,249,250,255,255,276,278,280,281,283,284,290,290,290,291,292,293,293,293,293,293,293,294,294,295,295,297,297,297,302,303,303,306,306,306,306,306,307,307,308,308,308,308,308,308,308,309,309,309,311,311,313,313,313,313,313,313,313,316,316,318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guernsey,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,17,20,23,30,34,36,39,39,45,60,78,91,114,136,154,154,166,166,181,191,200,209,218,219,223,228,234,236,239,239,239,241,243,245,245,245,247,247,247,251,251,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Faroe Islands,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,3,9,11,47,47,58,72,80,92,115,118,122,132,140,144,155,159,168,169,173,177,179,181,181,181,184,184,184,184,184,184,184,184,184,184,184,184,185,185,185,185,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Gibraltar,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,3,8,10,10,10,15,15,15,26,35,55,56,65,69,69,69,81,95,98,103,103,113,113,113,113,113,129,129,129,129,131,133,133,133,133,133,133,133,133,136,141,141,141,141,141,144,144,144,144,144,144,144,144,146,146,146,147,147,147,147,147,147,147,147,147,149,151,151,155,155,154,154,157,158,161,169,170,170,172,173,174,174,175,176,176,176,176,176,176,176,176,176,176,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Greenland,European Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,4,4,5,6,9,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,India,South-East Asia Region,,0,0,0,0,0,0,0,0,0,1,1,1,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,3,3,3,3,5,6,29,30,31,34,43,44,60,73,74,82,107,114,137,137,151,195,195,283,415,434,562,649,724,724,979,1071,1071,1636,1636,1965,2301,3374,4067,4067,5194,5734,6412,7447,8356,9152,10363,11439,12380,13387,14378,15712,17265,18601,19984,21393,23077,24506,26496,27892,29435,31332,33050,35043,37336,39980,42533,46433,49391,52952,56342,59662,62939,67152,70756,74281,78003,81970,85940,90927,96169,101139,106750,112359,118447,125101,131868,138845,145380,151767,158333,165799,173763,182143,190535,198706,207615,216919,226770,236657,246628,256611,266598,276583,286579,297535,308993,320922,332424,343091,354065,366946,380532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bangladesh,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,5,8,8,10,17,17,24,27,33,39,39,48,48,48,49,49,54,54,56,61,70,88,123,164,218,330,424,621,621,803,1012,1231,1572,1838,2144,2456,2948,3382,3772,4186,4689,4998,5416,5913,6462,7103,7667,8238,8790,9455,10143,10929,11719,12425,13134,13770,14657,15691,16660,17822,18863,20065,20995,22268,23870,25121,26738,28511,30205,32078,33610,35585,36751,38292,40321,42844,44608,47153,49534,52445,55140,57563,60391,63026,65769,68504,71675,74865,78052,81523,84379,87520,90619,94481,98489,102292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Indonesia,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,4,6,19,27,34,34,69,117,117,172,172,227,309,369,450,514,579,686,790,893,1046,1155,1285,1414,1528,1677,1790,1986,2092,2273,2491,2738,2956,3512,3512,4241,4241,4557,4839,5136,5516,5923,6248,6575,6760,7135,7418,7775,8211,8607,8882,9096,9511,9771,10118,10551,10843,11192,11587,12071,12438,12776,13112,13645,14032,14265,14749,15438,16006,16496,17025,17514,18010,18496,19189,20162,20796,21745,22271,22750,23165,23851,24538,25216,25773,26473,26940,27549,28233,28818,29521,30514,31186,32033,33076,34316,35295,36406,37420,38277,39294,40400,41431,42762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Thailand,South-East Asia Region,,2,2,2,4,4,5,5,14,14,14,14,19,19,19,19,25,25,25,32,32,32,33,33,33,33,34,34,35,35,35,35,35,35,35,35,37,40,40,40,42,42,42,43,43,47,47,48,50,50,53,59,70,75,75,75,114,147,177,212,322,322,411,721,827,934,934,1136,1136,1388,1524,1524,1771,1771,1875,1978,2067,2169,2220,2369,2423,2473,2518,2551,2579,2613,2643,2672,2700,2733,2765,2792,2811,2826,2839,2854,2907,2922,2931,2938,2947,2954,2960,2966,2969,2987,2988,2989,2992,3000,3004,3009,3009,3017,3017,3018,3025,3025,3028,3031,3033,3034,3037,3037,3040,3040,3042,3045,3054,3065,3076,3077,3081,3082,3083,3084,3101,3102,3104,3112,3119,3121,3125,3125,3129,3134,3135,3135,3135,3135,3141,3146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Maldives,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,4,8,8,8,9,10,13,13,13,13,13,13,13,13,13,13,13,13,13,16,17,17,18,18,19,19,19,19,19,19,19,19,19,19,20,20,20,21,23,28,34,51,67,83,85,94,116,137,188,214,245,256,396,468,519,527,545,573,618,648,744,785,835,897,904,955,982,1031,1078,1094,1106,1143,1186,1216,1274,1313,1371,1395,1438,1457,1513,1591,1672,1773,1829,1841,1850,1872,1883,1901,1903,1916,1942,1962,1976,2003,2013,2035,2065,2094,2120,2137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Nepal,South-East Asia Region,,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,5,5,5,5,5,6,6,9,9,9,9,9,9,9,9,12,16,16,16,16,30,31,31,31,42,45,48,49,49,51,52,54,57,57,59,59,75,82,82,99,99,109,110,120,191,217,246,258,276,291,304,375,402,444,487,548,584,675,682,772,886,1042,1212,1401,1572,1811,2099,2300,2634,2912,3235,3448,3762,4085,4364,4614,5062,5335,5760,6211,6591,7177,7848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sri Lanka,South-East Asia Region,,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,6,11,19,29,29,42,59,59,72,82,97,102,102,106,106,106,120,120,143,143,148,151,159,176,176,186,189,190,197,199,210,218,233,238,238,244,254,271,304,310,330,368,420,460,523,523,619,649,665,690,705,718,718,771,797,797,835,847,863,869,889,915,925,935,960,981,992,1027,1028,1055,1068,1089,1141,1182,1319,1469,1530,1558,1620,1633,1643,1683,1749,1797,1801,1814,1835,1857,1859,1869,1877,1880,1884,1889,1905,1915,1924,1947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Myanmar,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,5,5,8,8,10,15,15,16,20,20,21,21,22,22,27,28,38,41,62,74,85,85,94,107,111,119,121,127,139,144,146,146,146,150,150,151,151,151,155,161,161,162,176,177,178,180,180,180,181,181,182,182,187,191,193,199,199,201,201,201,203,206,206,206,207,224,224,228,233,234,236,236,240,242,244,246,248,261,261,261,262,262,262,263,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bhutan,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,9,11,11,15,20,21,21,21,21,21,21,21,21,24,27,27,27,28,31,33,33,43,47,47,47,47,48,48,59,59,59,62,62,62,66,66,67,67,67,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Timor-Leste,South-East Asia Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,6,6,6,18,18,19,19,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Iran,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,18,28,43,61,95,141,245,388,593,978,1501,2336,2922,3513,4747,5823,6566,7161,8042,9000,10075,11364,12729,14991,14991,16169,17361,18407,19644,20610,21638,23049,24811,27017,29406,32332,35408,38309,41495,44606,47593,50468,53183,55743,58226,60500,62589,64586,66220,68192,70029,71686,73303,74877,76389,77995,79494,80868,17265,83505,84802,85996,87026,88194,89328,90481,91472,92584,93657,94640,95646,96448,97424,98647,99970,101650,103135,104691,106220,107603,109286,110767,112725,114533,116635,118392,120198,122492,124603,126949,129341,131652,133521,135701,137724,139511,141591,143849,146668,148950,151466,154445,157562,160696,164270,167156,169425,171789,173832,175927,177938,180176,182545,184955,187427,189876,192439,195051,197647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saudi Arabia,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,8,8,7,15,15,20,21,21,62,103,103,133,171,238,238,274,392,511,562,767,900,1012,1104,1203,1299,1453,1563,1720,1885,2039,2370,2463,2752,2759,2932,3287,3651,4033,4462,4934,5369,5862,6380,7142,8274,9362,10484,11631,12772,13930,15102,16299,17522,18811,20077,21402,22753,24097,25459,27011,28656,30251,31938,33731,35432,37136,39048,41014,42925,44380,46869,49176,52016,54752,59854,59854,62545,65077,67719,70161,72560,74795,76726,78541,80185,81766,83384,85261,87142,89011,91182,93157,95748,98869,101914,105283,108571,112288,116021,119942,123308,127541,132048,136315,141234,145991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Pakistan,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,4,4,5,5,5,5,5,5,6,16,16,19,20,21,28,52,187,187,241,302,461,495,784,887,991,1057,1057,1235,1526,1625,1865,2039,2291,2450,2450,2880,3277,3864,4072,4322,4601,4788,5038,5374,5716,5988,6505,7025,7481,7993,8418,9216,9749,10513,11155,11940,12723,13328,13915,14885,15759,16817,18114,19103,20084,21501,22533,24073,25837,27474,29465,30941,32081,34261,35298,37218,38799,40151,42125,43966,45184,48091,50694,52437,54601,56349,57705,59151,61227,64028,66457,69496,72460,76398,80463,85264,89249,93983,98943,103671,108317,113702,119536,125521,132405,139230,144478,148921,154760,160118,165062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Qatar,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,7,8,8,8,11,12,15,18,24,262,262,262,337,401,439,442,442,452,460,470,494,501,526,537,549,562,590,634,693,781,835,949,1075,1325,1604,1832,2057,2210,2376,2512,2728,2979,3231,3428,3711,4103,4663,5008,5448,6015,6533,7141,7764,8525,9358,10287,11244,11921,12564,13409,14096,14872,15551,16191,17142,17972,18890,20201,21331,22520,23623,25149,26539,28272,29425,30972,32604,35606,35606,37097,38651,40481,42213,43714,45465,47207,48947,50914,52907,55262,56910,58433,60259,62160,63741,65495,67195,68790,70158,71879,73595,75071,76588,78416,79602,80876,82077,83174,84441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,United Arab Emirates,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,4,4,4,4,5,5,5,5,5,5,7,7,7,8,8,8,8,8,8,9,9,9,9,9,11,13,13,13,13,13,19,19,19,21,21,27,27,27,45,45,45,59,74,74,85,85,85,98,98,98,113,140,140,153,153,198,248,333,333,405,468,570,611,664,814,1024,1264,1505,1799,2076,2359,2659,2990,3360,3736,4123,4521,4933,5365,5825,6302,6302,6781,7256,7755,8238,8756,9281,9813,10349,10839,11380,11929,12481,13038,13599,14163,14730,15192,15738,16240,16793,17417,18198,18878,19661,20386,21084,21831,22627,23358,25063,25063,26004,26898,27892,28704,29485,30307,31086,31969,32532,33170,33896,34557,35192,35788,36356,37018,37642,38268,38808,39176,39904,40507,40986,41499,41990,42294,42636,42982,43364,43752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Kuwait,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,12,43,43,45,45,56,56,56,58,58,58,62,64,65,69,80,80,100,112,112,130,130,142,148,159,176,189,191,195,208,208,235,235,255,266,289,317,417,479,556,556,665,743,855,910,993,1154,1234,1300,1355,1405,1524,1658,1751,1915,1995,2080,2248,2399,2614,2892,3075,3288,3440,3740,4024,4377,4619,4983,5278,5804,6289,6567,7208,7623,8688,9286,10277,11028,11975,12860,13802,14850,16764,16764,17568,18609,19564,20464,21302,21967,22575,23267,24112,25184,26192,27043,27762,28649,29359,29921,30644,31131,31848,32510,33140,33823,34432,34952,35466,35920,36431,36958,37533,38074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Egypt,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,48,55,59,59,67,67,93,93,126,166,166,196,210,256,285,327,366,402,456,495,536,576,609,656,710,779,865,985,1070,1173,1322,1450,1560,1699,1794,1939,2065,2190,2350,2505,2673,2844,3032,3144,3333,3490,3659,3891,4092,4319,4534,4782,5042,5268,5537,5859,6193,6465,6813,7201,7588,7981,8476,8964,9400,9746,10093,10431,10829,11228,11719,12229,12764,13484,14229,15003,15786,16513,17265,17967,18756,19666,20793,22082,23449,24985,26384,27536,28615,29767,31115,32162,34079,35444,36829,38284,39726,41303,42980,44598,46289,47856,49219,50437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Afghanistan,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,7,7,7,10,16,21,22,22,22,24,24,40,42,74,80,80,106,114,114,166,192,235,269,270,299,337,367,423,444,521,521,555,607,665,770,794,845,908,933,996,1026,1092,1176,1226,1330,1463,1531,1703,1827,1827,2171,2469,2469,2469,2469,3224,3392,3563,3563,4402,4664,4967,4967,5339,6053,6402,6635,7072,7655,8145,8676,9216,9866,10582,11094,11831,12379,13016,13659,14443,15094,15750,16492,17267,17891,18969,19551,20342,20917,21222,22142,22890,23546,24102,24766,25527,25633,26874,27337,27878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Oman,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,4,6,6,6,6,6,12,15,16,16,16,16,18,18,18,18,19,20,22,24,24,33,39,48,52,55,84,99,99,109,152,167,167,179,210,231,252,277,298,331,371,419,457,484,546,599,727,813,910,1019,1069,1180,1266,1410,1508,1614,1716,1716,1905,1998,2049,2131,2274,2348,2447,2483,2568,2568,2735,2903,2958,3112,3224,3400,3574,3721,4019,4341,4625,5029,5186,5379,5671,5671,6370,6370,6794,7257,7770,7770,8118,8373,9009,9820,10423,11437,12223,12799,13537,14316,15086,16016,16882,17486,18198,18887,19954,21071,22077,23481,24524,25269,26079,26818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bahrain,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,26,33,33,38,40,47,49,49,49,49,49,56,79,109,110,189,195,210,211,221,229,237,256,269,285,306,337,377,392,419,458,473,476,515,515,567,569,643,673,688,700,756,811,823,887,998,1040,1136,1362,1528,1677,1700,1744,1773,1881,1907,1973,2027,2217,2518,2589,2647,2723,2811,2921,3040,3170,3284,3356,3533,3720,3934,4199,4444,4774,4941,5236,5531,5816,6198,6583,6747,6930,7374,7532,7888,8174,8414,8802,9138,9171,9366,9692,10052,10449,10793,11398,11871,12311,12815,13229,13835,14383,14763,15417,16200,16667,16667,17713,18227,18544,19013,19553,19961,20430,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Morocco,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,5,6,7,18,28,38,38,49,61,74,86,115,143,170,225,275,358,437,516,574,638,676,735,844,960,1113,1141,1184,1275,1377,1448,1545,1661,1763,1888,2024,2283,2564,2685,2855,3046,3209,3446,3568,3758,3897,4065,4120,4252,4359,4423,4569,4729,4903,5053,5219,5408,5548,5711,5910,6063,6360,6418,6512,6607,6652,6741,6870,6972,7023,7133,7211,7332,7406,7433,7532,7577,7601,7643,7714,7780,7807,7833,7866,7922,8003,8071,8151,8224,8302,8437,8508,8537,8610,8692,8793,8885,8931,8997,9074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Iraq,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,6,7,8,13,19,26,31,36,36,44,54,60,61,61,70,70,93,93,124,124,154,164,177,193,214,233,266,316,346,382,458,506,547,630,694,728,772,820,878,961,1031,1122,1202,1232,1280,1318,1352,1378,1400,1415,1434,1482,1513,1539,1574,1602,1631,1677,1708,1763,1820,1847,1928,2003,2085,2153,2219,2219,2346,2431,2480,2543,2603,2679,2767,2818,2913,3032,3143,3193,3260,3404,3554,3611,3724,3877,3964,4272,4469,4632,4848,5135,5457,5873,6179,6439,6868,7387,8168,8840,9846,11098,12366,13481,14268,15414,16675,17770,18950,20209,21315,22700,24254,25717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sudan,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,5,6,6,7,7,8,10,10,12,14,14,14,15,17,19,19,29,32,32,32,33,66,92,107,140,162,174,174,213,237,275,318,375,442,533,592,592,678,778,852,930,1111,1164,1365,1526,1660,1817,1964,1964,2289,2591,2591,2728,3138,3138,3378,3634,3826,3976,4146,4346,4346,4521,4800,5026,5173,5310,5499,5714,5865,6081,6083,6244,6427,6582,6730,6879,7007,7220,7435,7740,8020,8020,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Djibouti,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,3,12,12,13,15,19,26,31,34,41,50,51,59,90,121,135,140,150,187,215,298,363,435,591,732,732,846,846,945,974,986,999,1008,1023,1035,1072,1077,1089,1097,1112,1112,1116,1120,1124,1133,1135,1189,1210,1227,1256,1268,1284,1309,1331,1401,1518,1618,1828,2047,2270,2270,2270,2468,2468,2697,2914,2914,3194,3354,3569,3779,3935,4054,4123,4169,4207,4278,4331,4373,4398,4441,4449,4465,4501,4539,4545,4557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Somalia,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3,3,3,3,3,5,5,5,7,7,7,7,8,12,12,12,21,25,60,60,80,80,116,135,164,237,286,286,328,328,390,436,480,528,582,601,601,671,722,756,835,873,928,928,997,1054,1089,1170,1219,1284,1284,1357,1421,1455,1502,1573,1594,1594,1594,1594,1689,1711,1731,1828,1828,1916,1976,2023,2089,2146,2204,2204,2289,2334,2368,2416,2452,2513,2513,2579,2595,2642,2658,2696,2719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Lebanon,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,10,13,13,13,16,22,28,32,41,41,66,66,77,93,99,109,120,133,149,163,206,248,267,304,333,368,391,412,438,446,463,479,508,508,527,527,541,548,575,582,609,619,630,632,641,658,663,668,673,673,677,682,682,688,696,704,707,710,717,721,725,729,733,737,740,741,750,784,796,809,845,859,870,878,886,891,902,911,954,954,961,1024,1086,1097,1114,1119,1140,1161,1168,1172,1191,1220,1233,1242,1256,1306,1312,1320,1331,1350,1368,1388,1402,1422,1442,1446,1464,1473,1489,1495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Tunisia,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,6,6,7,16,16,18,20,24,29,39,54,60,75,89,114,173,197,227,278,312,362,394,423,455,495,553,574,596,623,628,643,671,685,707,726,747,780,822,864,866,866,884,901,909,918,922,939,949,967,975,980,994,998,1009,1009,1018,1022,1025,1026,1030,1032,1032,1032,1032,1032,1032,1035,1037,1037,1043,1044,1045,1046,1048,1048,1051,1051,1051,1051,1068,1071,1076,1077,1084,1086,1087,1087,1087,1087,1087,1087,1087,1087,1087,1093,1094,1096,1110,1125,1128,1132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Jordan,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,6,35,35,52,56,69,84,112,127,153,172,212,235,246,259,268,274,278,299,310,323,345,349,353,358,372,372,381,389,391,397,401,402,407,413,417,425,428,435,437,441,444,447,449,449,451,453,459,460,461,465,471,473,494,508,522,540,562,576,582,586,596,607,613,629,649,672,684,700,704,708,711,718,720,728,730,734,739,746,755,757,765,784,795,808,831,845,863,890,915,953,961,979,981,987,1001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Yemen,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,6,7,10,10,12,23,26,26,36,36,53,58,67,72,87,108,126,132,134,171,184,197,209,216,226,237,253,260,282,287,314,327,358,403,423,457,473,486,488,500,528,564,595,636,709,732,848,889,906,913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Libya,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,8,8,10,10,10,17,17,18,18,20,21,24,24,25,25,26,35,48,49,49,49,51,51,59,60,60,61,61,61,61,61,61,61,63,63,63,63,63,64,64,64,64,64,64,64,64,64,64,65,65,65,68,69,71,72,75,75,75,77,99,105,118,130,156,168,182,196,196,239,256,256,332,332,378,393,409,418,418,467,467,482,510,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Syrian Arab Republic,Eastern Mediterranean Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,5,5,5,9,10,10,10,16,16,16,19,19,19,19,19,19,25,25,25,29,33,33,38,38,39,39,42,42,42,42,42,42,43,43,43,43,44,44,44,44,44,45,45,47,47,47,47,47,48,48,50,51,58,58,58,58,58,59,70,86,106,121,121,122,122,122,122,123,123,123,124,124,125,141,144,146,152,164,164,170,177,177,177,178,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,occupied Palestinian territory,Eastern Mediterranean Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,16,16,19,26,30,30,31,35,38,38,39,41,44,47,48,52,59,59,60,64,84,97,104,115,117,134,134,165,193,217,246,254,263,263,266,268,268,271,274,288,293,295,313,320,324,329,335,336,336,340,342,342,342,343,344,344,353,353,353,532,543,546,547,547,547,547,547,547,548,548,554,555,560,567,570,577,608,602,602,602,602,605,613,625,625,626,627,628,630,636,643,643,643,643,652,661,665,667,669,673,676,689,695,745,795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,United States of America,Region of the Americas,,0,0,1,1,2,2,5,5,5,5,6,7,8,11,11,11,12,12,12,12,12,13,13,14,15,15,15,15,15,15,15,15,35,35,35,53,53,59,59,62,62,62,64,108,129,148,213,213,213,472,696,987,1264,1678,1678,1678,3503,3536,7087,10442,15219,15219,31573,42164,51914,63570,68334,85228,103321,122653,140640,163199,187320,213600,241703,273808,307318,333811,363321,395030,425889,461275,492881,524514,553882,578268,604070,632781,665330,695353,723605,751273,776907,800926,830053,860772,899281,931698,960916,983457,1003974,1035353,1067127,1093880,1125719,1154985,1171185,1193452,1215571,1245874,1245775,1271645,1298287,1322054,1340098,1361522,1382362,1409452,1432265,1477516,1477459,1501876,1525186,1547973,1568448,1592599,1618757,1634010,1658896,1675258,1694864,1716078,1734040,1783638,1798330,1823220,1837803,1857872,1886794,1915712,1933560,1951096,1968331,1988646,2010391,2032524,2057838,2079592,2098106,2126027,2149166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Brazil,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,7,13,19,25,25,34,52,77,98,121,200,234,234,291,428,621,904,904,1546,2201,2433,2433,2915,3417,3904,4256,4579,5717,6836,7910,9056,10278,11130,12056,13717,15927,17857,19638,20727,22169,23430,25262,28320,30425,33682,36599,38654,40581,43079,45757,49492,52995,58509,61888,66501,71886,78162,85380,91589,96559,101147,107780,114715,125218,135106,145328,155939,162699,168331,177589,188974,202918,218223,233142,241080,254220,271628,291579,310087,330890,347398,363211,374898,391222,411821,438238,465166,498440,514849,526447,555383,584016,614941,645771,672846,691758,707412,739503,772416,802828,828810,850514,867624,888271,923189,955377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Peru,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,9,11,17,22,28,43,71,86,86,145,234,234,318,318,395,416,480,580,580,635,671,852,1065,1323,1323,1414,1595,1746,2281,2561,2954,4342,5256,5897,6848,7519,7519,10303,11475,13489,13489,14420,15628,16325,17837,19250,20914,21648,25331,27517,28699,31190,33931,36976,40459,42534,45928,47372,51189,54817,58526,61847,65025,67307,68822,72059,76306,80604,84495,88541,92273,94933,99483,104020,108769,111698,115754,119959,123979,129751,135905,141779,148285,155671,164476,170039,174884,178914,183198,187400,191758,196515,199696,203736,208823,214788,220749,225132,229736,232992,237156,240908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Chile,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,5,10,13,17,23,33,43,61,75,156,156,238,342,434,434,632,746,922,1142,1306,1610,1909,1909,2449,2738,3031,3404,3737,4161,4471,4815,5116,5546,5972,6501,6927,7213,7525,7917,8273,8807,9252,9730,10888,10507,10832,11296,11812,12306,12858,13331,13813,14365,14885,16023,17008,18435,19663,20643,22016,23048,24581,25972,27219,28866,30063,31721,34381,37040,37040,41428,43781,46059,46059,53617,53617,61857,65393,69102,73997,77961,82289,86943,90638,94858,99688,105159,108686,113628,118292,122499,127745,134150,138846,142759,148496,154092,160846,167355,174293,179436,184449,220628,225103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Canada,Region of the Americas,,0,0,0,0,0,0,1,2,3,3,3,4,4,4,4,5,5,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,9,9,10,10,11,11,14,19,19,27,30,30,45,51,57,62,77,93,93,138,176,244,304,424,424,569,736,846,1048,1384,1432,1739,3409,3555,4018,4757,5655,6317,7695,9005,10114,11732,12938,13904,15806,17049,18433,19759,21226,22544,23702,24786,26146,27540,28884,30659,32400,33909,35383,37374,38923,40813,42739,44353,45778,47316,49014,50363,52056,53657,55572,59365,59844,61159,62458,63895,65399,66780,67996,69156,70342,71486,72536,73829,74993,76204,77306,78499,79502,80555,81765,82892,84081,85103,85998,86939,87902,88856,89741,90516,91351,92151,92748,93441,94070,94335,95057,95699,96244,96653,97125,97530,97943,98410,98787,99147,99467,99853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mexico,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,5,5,5,5,5,7,7,7,7,11,12,26,41,53,53,82,93,118,164,164,251,370,370,478,478,589,717,848,993,1094,1215,1378,1510,1688,1890,2143,2439,2785,3181,3441,3844,4219,4661,5014,5399,5847,6297,6875,7497,8261,8772,9501,10544,11633,12872,13842,14677,15529,16752,17799,19224,20739,22088,23471,24905,26025,27634,29616,31522,33460,35022,36327,38324,40186,42595,45032,47144,49219,51633,54346,56594,59567,62527,65856,68620,71105,74560,78023,81400,84627,87512,90664,93435,97326,101238,105680,110026,113619,117103,120102,124301,129184,133974,139196,142690,146837,150264,154863,159793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Ecuador,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,7,7,13,14,14,15,15,15,17,17,23,23,37,58,58,155,199,367,506,532,790,1049,1211,1211,1595,1823,1835,1962,2240,2372,3163,3163,3465,3465,3747,3747,4450,4956,7161,7257,7466,7529,7603,7858,8225,8450,9022,9468,10128,10398,10850,11183,22719,22719,22719,23240,24258,24675,24934,26336,27464,29538,31881,31881,29420,30298,30298,28818,29559,29509,30419,30486,30502,30502,31467,32723,33182,34151,34151,34854,35828,36258,36756,37355,37355,38103,38471,38571,38571,39098,39098,40414,40966,40966,42106,42728,43120,43378,43917,44440,44440,45778,46356,46751,47322,47943,48490,49097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Colombia,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,3,9,9,16,24,24,45,45,93,108,145,196,196,277,306,470,470,491,539,608,702,798,906,1065,1161,1267,1406,1485,1579,1780,2054,2223,2473,2709,2776,2852,2979,3105,3233,3439,3621,3792,3977,4149,4356,4561,4881,5142,5379,5597,5949,6211,6507,7006,7285,7668,7973,8613,8959,9456,10051,10495,11063,11613,12272,12930,13610,14216,14939,15574,16295,16935,17687,18330,19131,20177,21175,21981,23003,24104,25366,26688,28236,29383,30493,31833,33354,35120,36635,38027,39236,40719,42078,43682,45212,46858,48746,50939,53063,54931,57046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Dominican Republic,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,21,21,21,34,72,72,72,245,312,392,488,581,581,581,901,1109,1284,1380,1488,1488,1488,1828,1956,1956,2349,2349,2620,2967,3167,3286,3614,3755,4126,4335,4680,4964,5044,5300,5543,5749,5926,6135,6293,6416,6652,6972,7288,7578,7954,8235,8480,8807,9095,9376,9882,10347,10634,10900,11196,11320,11739,12110,12314,12725,13223,13477,13657,13989,14422,14801,15073,15264,15723,16068,16531,16908,17285,17572,17752,18040,18319,18708,19195,19600,20126,20415,20808,21437,22008,22572,22962,23721,23686,24105,24645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Argentina,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,9,12,12,17,19,31,34,45,56,65,65,79,97,128,158,225,266,301,387,502,589,690,745,820,966,1054,1133,1265,1353,1451,1554,1628,1715,1795,1929,1975,1975,2252,2336,2477,2598,2694,2784,2839,2960,3073,3197,3340,3479,3701,3838,3892,4019,4201,4304,4476,4532,4681,4799,4922,5076,5305,5530,5680,5924,6034,6278,6563,6973,7134,7479,7805,8068,8371,8809,9283,9931,10649,11353,12076,12628,13228,13933,14702,14702,16214,16851,17415,18319,19268,20197,21037,22020,22794,23620,24761,25987,27373,28764,30295,31577,32785,34159,35552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Panama,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,10,14,27,27,43,69,69,86,109,137,137,245,345,345,558,558,674,786,901,989,989,1181,1317,1475,1673,1801,1988,2100,2249,2528,2752,2974,3234,3400,3472,3574,3751,4016,4210,4273,4467,4658,4821,4992,5166,5338,5538,5779,6021,6200,6378,6532,6720,7090,7197,7387,7523,7731,7868,8070,8282,8448,8616,8616,8944,9118,9268,9449,9606,9726,9867,9977,10116,10267,10577,10926,11183,11447,11728,12131,12531,13018,13463,13837,14095,14609,15044,15463,16004,16425,16854,17233,17889,18586,19211,20059,20686,21422,21962,22597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bolivia,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,3,3,11,11,11,12,15,16,19,24,27,28,39,39,61,74,74,97,107,115,123,132,139,157,183,194,210,264,268,275,300,330,354,397,441,465,493,520,564,598,609,672,703,807,866,950,1014,1053,1110,1167,1229,1470,1594,1681,1802,1886,2081,2266,2437,2556,2831,2964,3148,3372,3577,3826,4088,4263,4481,4919,5187,5579,5915,6263,6660,7136,7768,8387,8731,9592,9982,10531,10991,11638,12245,12728,13358,13643,13949,14644,15281,16165,16929,17842,18459,19073,19883,20685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Honduras,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,8,8,9,12,24,24,26,30,30,52,52,67,67,110,139,139,172,219,222,264,268,298,305,312,343,382,392,393,397,407,419,426,442,457,472,477,494,510,519,562,591,627,661,702,738,771,804,899,1010,1055,1178,1270,1461,1685,1771,1830,1972,2100,2080,2255,2318,2460,2565,2646,2798,2955,3100,3204,3477,3743,3950,4189,4401,4640,4752,4886,5094,5202,5362,5527,5690,5880,5971,6155,6327,6450,6935,7360,7669,8132,8455,8858,9178,9656,10299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guatemala,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,6,9,12,12,18,20,21,24,24,25,32,34,36,36,39,47,50,50,61,70,77,87,95,126,137,153,156,167,180,196,214,235,257,289,294,316,342,384,430,473,500,530,557,585,599,644,688,703,730,763,798,832,900,967,1052,1114,1199,1342,1518,1643,1763,1912,2001,2133,2265,2512,2743,3054,3424,3760,3954,4145,4348,4607,4739,5087,5336,5586,5760,6154,6485,6792,7055,7502,7866,8221,8561,8982,9491,9845,10272,10706,11251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,El Salvador,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,5,13,13,13,19,24,30,30,32,41,46,56,62,69,78,93,103,117,118,125,137,149,159,164,177,190,201,218,225,237,250,261,274,298,323,345,377,395,424,446,490,555,587,633,695,742,784,889,958,998,1037,1112,1210,1265,1338,1413,1498,1571,1640,1725,1819,1915,1983,2042,2109,2194,2278,2395,2517,2582,2653,2705,2781,2849,2934,3015,3104,3191,3274,3373,3481,3603,3720,3826,3941,4066,4200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Haiti,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,6,7,8,8,8,8,15,15,15,16,16,18,18,21,24,25,27,30,30,31,31,40,40,41,41,43,44,44,47,57,58,62,72,72,72,74,76,76,76,81,85,85,88,100,101,108,129,146,151,182,209,219,234,273,310,358,456,533,596,663,734,812,865,958,1063,1174,1320,1443,1584,1865,2124,2226,2507,2604,2640,2924,3072,3334,3583,3662,3796,3941,3941,4165,4309,4441,4547,4688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cuba,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,4,5,5,10,11,16,16,16,40,48,57,67,80,119,119,170,186,212,233,269,288,320,350,396,457,515,564,620,669,726,766,814,862,923,986,1035,1087,1137,1189,1235,1285,1337,1369,1389,1437,1467,1501,1537,1611,1649,1668,1685,1703,1729,1741,1754,1766,1783,1804,1810,1830,1840,1862,1872,1881,1887,1900,1908,1916,1931,1941,1947,1963,1974,1983,2005,2025,2045,2083,2092,2107,2119,2133,2173,2191,2200,2205,2211,2219,2233,2238,2248,2262,2273,2280,2295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Venezuela,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,33,33,36,36,36,36,70,70,77,91,91,106,113,113,129,129,143,144,144,144,144,159,165,166,166,171,171,171,181,181,193,197,204,204,228,256,285,288,298,318,318,323,325,329,329,331,333,345,345,357,361,367,379,381,388,402,414,422,440,440,455,504,541,618,618,824,824,882,944,1010,1121,1177,1245,1245,1327,1370,1459,1510,1662,1819,1952,2087,2145,2316,2377,2473,2632,2738,2814,2879,2904,2978,3062,3150,3386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Costa Rica,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,9,9,13,13,22,23,23,23,41,41,50,87,113,113,117,158,177,201,201,231,263,295,314,314,347,375,396,416,435,454,467,483,502,539,558,577,595,612,618,626,642,649,655,660,662,669,681,686,687,693,695,697,705,713,719,725,733,739,742,755,761,765,773,780,792,801,804,815,830,843,853,863,882,882,882,903,911,918,930,951,956,984,1000,1022,1047,1056,1084,1105,1157,1194,1263,1263,1318,1342,1375,1461,1538,1612,1662,1715,1744,1796,1871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Paraguay,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,5,5,6,6,8,9,9,11,11,13,18,22,22,27,41,41,52,56,59,64,65,69,77,92,96,104,113,115,119,124,129,133,134,147,159,161,174,199,202,206,208,208,213,213,220,223,228,228,230,239,249,266,333,370,396,431,440,462,563,689,713,724,737,740,754,759,778,786,788,829,833,836,838,850,862,865,877,884,900,917,964,986,995,1013,1070,1086,1087,1090,1135,1145,1187,1202,1230,1254,1261,1289,1296,1303,1308,1330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Nicaragua,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,4,4,4,4,5,5,5,5,5,6,6,6,6,7,7,9,9,9,9,9,9,9,9,9,10,10,10,11,11,13,13,13,13,14,14,14,14,15,15,16,16,16,16,16,16,16,25,25,25,25,25,25,25,279,279,279,279,279,279,279,759,885,885,885,885,885,950,1309,1309,1309,1309,1309,1309,1309,1655,1655,1655,1655,1655,1655,1655,2014,2014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Uruguay,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,6,29,79,94,94,135,162,162,217,217,238,274,303,309,320,338,350,369,386,400,406,415,424,456,473,494,501,512,483,492,493,502,508,517,528,535,543,549,557,563,596,606,620,625,630,643,648,652,655,657,670,673,684,694,702,707,711,717,719,724,732,734,734,737,738,746,749,753,764,769,787,789,803,811,816,821,823,825,826,828,832,834,845,845,845,846,847,847,847,847,848,848,849,849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Jamaica,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,7,8,10,10,12,13,15,16,16,19,19,21,26,26,26,30,32,36,36,38,44,47,53,55,58,59,63,63,63,65,69,72,73,105,125,143,163,173,196,223,233,243,257,288,305,305,364,381,396,422,432,463,469,471,473,478,488,490,498,502,505,507,509,509,511,517,520,520,520,529,534,544,550,552,556,564,569,569,575,581,581,588,590,590,591,595,596,598,598,598,598,611,614,615,617,621,621,626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guyana,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,1,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,8,12,19,19,19,23,24,29,31,33,37,37,37,37,47,47,48,55,57,63,63,65,66,67,67,70,73,74,74,74,75,78,82,82,82,82,92,93,93,93,93,97,104,109,113,113,113,116,117,117,124,125,125,127,127,127,135,137,139,139,150,150,152,153,153,153,153,153,153,154,154,154,156,156,158,159,159,159,159,171,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Trinidad and Tobago,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,5,5,7,9,9,9,50,51,57,60,61,66,74,76,82,85,89,90,97,100,103,105,106,107,109,109,109,112,113,113,114,114,114,114,114,114,114,115,115,115,115,115,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,123,123,123,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bahamas,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,4,4,4,4,4,5,5,9,10,10,14,14,15,21,24,24,28,29,33,36,40,41,42,42,47,49,49,53,54,54,58,60,64,65,70,72,72,78,80,80,80,80,81,82,82,83,84,89,92,92,92,92,92,93,93,94,96,96,96,96,96,96,97,97,97,100,100,100,100,100,101,101,101,102,102,102,102,102,103,103,103,103,103,103,103,103,103,104,104,104,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Barbados,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,5,5,17,18,18,18,24,24,26,33,33,33,45,45,51,51,56,60,63,63,66,67,68,71,72,73,75,75,75,75,75,75,75,76,76,77,79,79,80,80,80,81,81,81,82,82,82,82,82,82,84,84,84,85,85,85,85,86,88,88,90,90,90,90,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,96,96,96,96,96,97,97,97,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Suriname,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,6,7,7,8,8,8,8,8,8,8,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,12,12,12,14,27,53,54,82,82,90,101,128,133,137,144,168,187,187,208,208,242,261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Vincent and the Grenadines,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,3,3,7,7,8,8,12,12,12,12,12,12,12,12,12,12,12,12,13,13,14,14,14,15,15,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,27,29,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Antigua and Barbuda,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,3,3,7,7,7,7,7,7,7,7,7,7,15,15,19,19,19,21,21,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26,26,26,26,26,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Grenada,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,7,7,7,7,9,9,9,10,10,12,12,12,12,12,12,12,14,14,14,14,14,14,14,13,13,13,14,14,15,15,15,18,18,18,19,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Lucia,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,3,3,3,3,3,3,4,9,9,13,13,13,13,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Belize,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3,3,3,3,3,4,5,7,7,8,9,10,10,13,14,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,22,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Dominica,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,11,11,11,11,11,11,11,11,11,11,11,14,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,18,18,18,18,18,18,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Kitts and Nevis,Region of the Americas,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,4,2,8,8,8,8,9,9,10,10,11,11,11,12,12,12,12,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Puerto Rico,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,5,6,14,21,23,31,39,51,64,64,64,64,174,239,286,316,378,452,452,513,573,620,683,725,788,897,903,923,974,1043,1068,1118,1213,1252,1298,1298,1416,1276,1276,1371,1389,1400,1433,1539,1575,1757,1808,1843,1924,1968,2031,2156,2173,2198,2256,2299,2329,2427,2542,2589,2646,2710,2805,2866,2913,3030,3100,3189,3260,3324,3397,3486,3647,3718,3776,3873,3935,4023,4508,4620,4915,4985,5046,5185,5329,5352,5536,5690,5811,5890,5951,6003,6111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,French Guiana,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,6,1,7,7,7,7,11,15,15,15,18,20,23,28,28,31,31,31,43,46,51,55,57,62,66,68,72,77,83,84,86,86,88,88,95,96,96,96,96,97,97,97,107,109,109,109,111,124,125,126,128,128,128,133,133,138,138,141,141,144,244,146,153,164,184,189,197,197,210,218,237,249,261,279,328,353,384,409,436,436,477,499,517,533,556,589,639,689,729,773,865,917,1043,1161,1255,1326,1421,1554,1758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Martinique,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,3,3,4,6,10,15,16,16,23,32,32,32,32,53,57,66,66,93,93,105,111,119,128,131,138,145,145,149,151,152,154,154,155,156,157,157,158,159,159,163,153,163,163,164,170,170,170,175,175,175,175,178,179,180,181,181,181,182,182,183,186,187,187,187,189,189,189,192,192,192,192,192,192,197,197,197,197,197,197,197,197,200,200,200,200,200,200,200,202,202,202,202,202,202,202,202,202,202,202,202,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guadeloupe,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,18,18,33,45,51,51,56,62,73,76,76,96,96,96,106,114,125,128,130,130,134,135,139,139,141,143,143,143,143,145,145,145,145,145,148,148,148,148,148,149,149,149,149,149,151,152,152,152,152,152,152,153,153,154,154,154,254,155,155,155,155,155,155,155,155,155,155,155,156,156,161,161,161,161,162,162,162,162,162,162,162,164,164,164,164,164,164,164,171,171,171,171,171,171,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cayman Islands,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3,3,3,3,5,5,8,8,8,8,8,12,12,14,22,28,28,35,39,39,45,45,45,45,53,53,54,54,60,61,61,61,61,66,66,66,66,70,70,70,70,73,73,73,74,74,74,75,78,78,80,81,81,81,84,85,86,93,94,94,94,94,111,111,121,129,129,129,134,137,140,140,141,141,141,150,151,156,160,164,164,164,171,176,180,186,187,187,187,187,193,193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Bermuda,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,6,6,7,7,15,17,22,22,27,32,32,35,35,37,37,39,39,39,48,48,50,57,57,57,81,83,83,86,86,86,98,99,99,99,109,109,110,111,111,114,114,115,115,115,115,118,118,118,118,118,119,121,121,122,123,123,123,125,125,125,125,128,133,133,133,139,139,140,140,140,140,141,141,141,141,141,141,141,141,141,141,141,142,144,144,144,144,144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Aruba,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,5,5,5,8,9,12,19,19,28,46,46,50,55,55,60,62,64,64,64,71,74,82,86,92,92,92,92,93,95,96,96,97,97,97,100,100,100,100,100,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sint Maarten,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,6,6,6,18,23,23,23,37,40,40,43,50,50,50,52,52,53,57,35,57,64,67,68,71,73,73,73,74,74,75,75,76,76,76,76,76,76,76,76,76,77,77,77,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,77,77,77,77,77,77,77,77,77,77,77,77,77,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,United States Virgin Islands,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,3,3,6,6,17,17,17,17,17,17,22,30,30,30,33,37,40,42,43,43,45,46,50,53,51,51,51,51,51,51,53,53,53,54,54,54,54,55,55,59,59,62,66,66,66,66,66,66,66,66,68,68,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,70,70,70,71,71,71,71,71,71,72,72,72,72,72,72,73,73,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Martin,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,5,8,8,11,11,12,6,6,18,18,21,22,22,24,29,31,31,31,32,32,33,33,33,35,35,35,35,37,37,37,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,42,42,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Curacao,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,3,3,3,3,3,3,4,6,6,7,7,7,7,11,11,11,11,11,11,11,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,18,18,20,20,20,20,20,20,20,21,21,21,21,21,21,22,22,22,22,22,22,22,23,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Falkland Islands (Malvinas),Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,5,5,5,5,5,5,11,11,11,11,11,11,11,11,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Turks and Caicos Islands,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,4,5,5,5,5,5,5,5,5,8,8,8,8,8,9,9,10,10,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Montserrat,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,5,5,5,5,5,5,5,5,6,6,6,6,8,8,9,9,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,British Virgin Islands,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,5,5,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Barthelemy,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,"Bonaire, Sint Eustatius and Saba",Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3,3,4,4,4,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Anguilla,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,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,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Saint Pierre and Miquelon,Region of the Americas,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,South Africa,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,7,7,13,17,17,38,51,62,62,116,150,205,240,274,402,554,709,927,1170,1187,1280,1326,1353,1380,1462,1505,1585,1655,1686,1749,1845,1934,2003,2028,2173,2272,2415,2506,2605,2783,3034,3158,3300,3465,3635,3953,4220,4361,4546,4793,4996,5350,5647,5951,6336,6783,7220,7439,7808,8232,8895,9420,10015,10652,11350,12074,12739,13524,14355,15515,16433,17200,18003,19137,20125,21343,22583,23615,24264,25937,27403,29240,30967,32683,34357,35812,37525,40792,43434,45973,48285,50879,52991,55421,58568,61927,65736,70038,73533,76334,80412,83890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Nigeria,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,1,1,1,2,2,2,2,25,2,2,2,2,2,8,12,12,22,22,22,42,46,65,65,65,65,111,111,139,174,190,210,208,232,254,276,288,305,318,323,343,343,373,373,373,373,541,541,541,541,981,1095,1182,1273,1337,1337,1532,1932,2170,2388,2388,2802,2950,3145,3526,3912,4151,4399,4641,4787,4971,5162,5450,5621,5959,6175,6401,6677,7016,7261,7526,7839,8068,8344,8733,8915,9302,9855,10162,10578,10819,11166,11516,11844,12233,12486,12801,13464,13873,14554,14554,15181,16085,16658,17148,17735,18480,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Algeria,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,5,5,12,12,17,17,20,20,20,25,25,26,37,49,60,60,72,82,94,94,201,231,264,264,305,367,409,454,511,584,847,986,986,1251,1251,1423,1468,1572,1666,1761,1825,1914,1983,2070,2160,2268,2418,2534,2629,2718,2811,2910,3007,3127,3256,3382,3517,3649,3848,4006,4154,4295,4474,4648,4838,4997,5182,5369,5558,5723,5891,6067,6253,6442,6630,6821,7019,7201,7377,7542,7728,7918,8113,8306,8503,8697,8857,8997,9134,9267,9394,9513,9626,9733,9831,9935,10050,10154,10265,10382,10484,10589,10698,10810,10919,11031,11147,11268,11385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Ghana,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,6,6,6,9,11,16,19,24,27,53,68,132,137,137,152,152,152,195,204,204,205,205,214,287,313,313,378,408,566,566,636,636,641,641,834,1042,1042,1042,1154,1154,1279,1279,1550,1550,1671,1671,2074,2074,2169,2169,2719,2719,2719,3091,4012,4263,4263,4700,5127,5408,5530,5638,5735,5735,5735,6096,6096,6269,6486,6617,6683,6808,6964,7303,7303,7616,7768,7881,8070,8297,8548,8885,9168,9462,9638,9910,10201,10201,10358,10856,11118,11422,11964,12193,12590,12929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cameroon,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,3,5,5,10,15,22,27,40,72,72,70,75,75,91,113,139,139,139,246,246,555,555,555,555,730,730,803,803,803,803,855,855,855,1016,1016,1016,1163,1163,1163,1401,1403,1518,1621,1621,1705,1806,1832,2069,2077,2077,2077,2265,2265,2265,2265,2335,2579,2579,2689,2800,2954,3047,3047,3047,3529,3529,3733,4288,4400,4400,4400,4890,5436,5436,5436,5436,5659,5904,6397,6585,6752,6789,7392,7599,7860,8060,8312,8681,8681,8743,8743,9572,9864,9864,9864,9864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guinea,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,4,4,4,5,8,8,16,16,16,30,52,52,111,111,111,144,164,194,194,250,250,319,363,404,438,438,477,477,622,688,761,862,954,996,1094,1163,1240,1351,1495,1537,1586,1650,1710,1811,1856,1927,2009,2042,2146,2146,2298,2372,2473,2531,2658,2727,2796,2863,2927,3067,3114,3176,3275,3322,3358,3446,3553,3656,3706,3771,3844,3886,3933,3991,4060,4117,4165,4216,4258,4291,4372,4426,4484,4534,4572,4639,4668,4841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Senegal,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,4,4,4,4,4,4,10,10,21,26,27,27,36,38,38,56,67,79,86,99,105,119,119,142,162,175,190,195,207,219,222,226,237,244,250,265,278,280,291,299,314,335,342,350,367,377,412,442,479,545,614,671,735,823,882,933,1024,1115,1273,1271,1329,1433,1492,1551,1634,1709,1886,1995,2105,2189,2310,2429,2480,2544,2617,2714,2815,2909,2976,3047,3130,3161,3253,3348,3429,3535,3645,3739,3836,3932,4021,4155,4249,4328,4430,4516,4640,4759,4851,4996,5090,5090,5247,5369,5475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Democratic Republic of the Congo,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,3,3,7,14,14,23,30,36,45,51,54,58,68,81,98,109,123,134,134,148,161,161,183,207,215,215,223,235,241,254,267,287,287,327,332,350,359,359,394,416,442,459,471,491,500,572,604,674,682,682,705,797,897,937,991,1024,1102,1169,1242,1298,1369,1454,1454,1537,1730,1834,1944,1944,2140,2140,2304,2402,2659,2832,2832,2965,3048,3194,3325,3494,3643,3763,3877,4015,4105,4258,4389,4514,4636,4723,4777,4777,4973,5099,5282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cote dIvoire,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,3,6,6,9,9,9,9,25,25,72,80,80,92,140,165,169,169,190,190,203,245,245,323,349,384,384,480,533,533,626,638,654,688,742,742,847,879,916,952,1004,1077,1111,1150,1164,1183,1238,1275,1275,1362,1398,1432,1464,1516,1571,1602,1667,1700,1730,1857,1912,1971,2017,2061,2109,2119,2153,2231,2301,2341,2366,2376,2423,2477,2556,2641,2750,2799,2833,2951,3024,3110,3262,3431,3557,3739,3881,3995,4181,4404,4684,4848,5084,5084,5679,6063,6444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Gabon,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,3,3,3,6,6,6,6,6,7,7,7,7,7,7,18,21,21,21,21,24,24,44,44,49,57,57,80,87,95,95,108,109,120,156,166,166,172,176,176,176,238,276,276,308,335,335,367,397,397,504,620,661,661,802,863,1004,1104,1209,1320,1320,1432,1502,1567,1567,1728,1934,1934,2135,2238,2319,2431,2613,2613,2655,2655,2803,2902,2955,3101,3101,3101,3101,3294,3294,3463,3463,3463,3463,4033,4114,4229,4340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Kenya,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,3,7,7,7,7,15,16,25,25,25,25,25,25,38,50,81,110,122,122,142,142,172,179,184,189,191,197,208,216,225,234,246,262,270,281,296,303,320,336,343,355,363,374,384,396,411,435,466,490,535,582,607,621,649,672,700,715,737,758,781,830,887,912,963,1029,1109,1161,1192,1214,1286,1348,1471,1618,1745,1888,1962,2021,2093,2216,2340,2474,2600,2767,2862,2989,3094,3215,3305,3457,3594,3727,3860,4044,4257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Guinea-Bissau,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,9,9,9,15,18,18,33,33,33,35,35,38,39,39,40,43,46,50,50,50,50,50,50,52,52,52,53,73,73,77,201,257,260,292,292,292,508,508,508,642,642,761,820,836,913,913,913,990,1038,1038,2089,1109,1114,1114,1173,1173,1173,1173,1195,1256,1256,1322,1339,1339,1346,1346,1368,1368,1368,1389,1389,1389,1389,1389,1460,1460,1460,1492,1492,1512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mali,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,9,18,18,18,18,28,28,36,39,39,39,47,56,59,74,87,87,116,123,144,171,190,216,224,246,258,293,309,325,370,389,408,424,482,490,508,544,563,580,612,631,650,668,692,704,712,730,758,779,806,835,860,874,901,931,931,969,1015,1030,1059,1077,1116,1194,1226,1250,1265,1315,1351,1386,1461,1485,1523,1533,1547,1586,1667,1722,1752,1776,1809,1860,1885,1890,1906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Ethiopia,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,5,6,9,9,9,11,11,12,12,12,16,16,21,23,26,26,31,35,38,43,43,52,55,56,65,69,71,74,82,85,92,96,105,108,111,114,116,116,117,122,123,124,126,130,131,133,133,135,140,145,162,191,194,210,239,250,261,263,272,287,306,317,352,365,389,399,433,494,582,655,701,731,831,968,1063,1172,1257,1344,1486,1636,1805,1934,2020,2156,2336,2506,2670,2915,3166,3345,3521,3630,3759,3954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Zambia,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,3,3,3,3,3,13,16,16,35,35,36,39,39,39,39,39,39,39,39,40,40,43,45,45,48,48,52,57,61,65,70,74,76,84,84,88,89,95,97,106,109,119,124,137,137,139,153,167,252,267,267,441,446,654,668,679,753,761,772,832,866,920,920,920,920,920,1057,1057,1057,1057,1057,1089,1089,1089,1111,1111,1154,1154,1200,1200,1252,1252,1321,1357,1358,1382,1405,1412,1416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Central African Republic,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,4,4,4,5,5,6,6,6,6,6,8,8,8,9,9,9,9,10,10,11,11,11,11,11,11,12,12,12,12,12,14,14,16,19,19,19,42,50,50,64,64,72,72,94,94,94,94,94,143,179,179,179,187,221,301,301,327,336,411,411,436,479,552,604,652,652,701,755,874,874,1011,1069,1069,1189,1288,1451,1570,1634,1850,1850,1888,2044,2057,2057,2222,2222,2410,2564,2605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Equatorial Guinea,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,4,4,6,6,6,6,6,6,6,6,13,14,14,14,15,15,16,16,16,16,16,18,18,18,18,21,41,51,51,51,79,79,79,79,84,84,212,258,258,258,315,315,315,315,315,315,315,439,439,439,439,439,439,439,522,583,594,594,690,719,825,890,903,960,960,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,South Sudan,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,6,6,34,34,35,45,45,46,49,49,58,90,120,120,156,174,174,194,231,231,231,282,282,282,339,473,473,563,655,655,806,806,994,994,994,994,994,994,1317,1317,1317,1317,1317,1604,1606,1606,1606,1670,1684,1693,1755,1776,1807,1813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Niger,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,10,10,10,20,20,20,74,74,98,144,144,184,278,342,410,438,491,529,548,570,584,609,627,639,648,655,657,662,671,681,684,696,701,709,713,719,728,736,750,755,763,770,781,795,815,821,832,854,860,876,885,889,904,909,914,920,924,937,943,945,951,952,955,955,955,956,958,958,960,961,963,966,970,973,973,974,974,974,978,978,980,980,1016,1020,1020,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Burkina Faso,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,3,3,15,20,26,40,40,72,75,99,114,146,146,146,146,222,246,261,261,261,261,302,302,345,364,384,414,443,443,443,497,515,528,543,547,547,565,576,581,600,600,616,629,632,632,638,638,645,649,652,662,672,689,729,736,736,748,751,760,766,773,773,780,782,796,796,806,809,812,814,831,832,841,845,845,847,847,853,881,883,884,884,885,885,888,888,890,891,891,891,892,892,894,894,895,899,899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sierra Leone,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,4,6,6,6,7,7,7,8,10,10,11,13,15,26,30,35,43,50,61,64,82,86,93,99,104,116,124,136,155,157,178,199,225,231,257,291,307,338,338,387,408,447,462,505,519,534,570,585,606,621,721,735,754,782,812,829,852,861,865,896,909,914,929,946,969,1001,1025,1062,1085,1103,1132,1169,1176,1225,1249,1272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Madagascar,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,13,19,19,24,26,26,37,46,53,53,65,65,70,77,77,92,93,95,95,104,106,106,110,110,117,117,120,121,121,121,121,12,122,124,128,128,128,128,132,135,149,151,158,158,193,193,169,169,169,186,192,212,230,238,283,304,322,326,371,405,448,488,527,542,586,612,656,698,758,771,826,845,908,957,975,1026,1052,1094,1138,1162,1203,1230,1252,1272,1290,1317,1378,1403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Chad,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,3,5,5,5,5,5,7,7,7,7,7,9,9,10,10,11,11,11,18,23,23,27,27,33,33,33,33,34,34,34,40,46,46,46,52,52,73,73,117,117,117,170,170,253,260,322,322,322,357,372,399,428,474,503,519,545,565,588,611,648,675,687,700,715,726,759,759,778,790,803,820,828,836,836,837,839,844,846,848,848,848,850,850,853,854,854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Congo,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,3,4,4,4,4,4,4,19,19,19,19,19,22,41,41,45,45,45,45,60,60,60,60,70,74,74,117,117,143,143,143,160,165,186,186,200,200,200,207,207,220,220,229,229,229,236,236,264,274,287,287,287,333,333,341,391,391,391,410,414,420,420,469,469,487,487,531,569,571,571,587,587,604,611,618,632,635,639,653,683,683,718,728,745,745,779,779,883,883,883,883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mauritania,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,5,5,5,5,5,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,9,16,29,40,62,81,131,141,173,173,227,237,262,262,292,346,423,483,530,530,588,668,784,883,947,947,1049,1162,1283,1283,1439,1573,1783,1783,1887,2057,2223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,United Republic of Tanzania,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,6,6,6,12,12,12,13,13,13,14,14,19,19,20,20,20,20,22,24,24,25,25,32,32,32,49,53,88,94,148,148,171,255,255,285,285,300,300,300,300,300,480,480,480,480,480,480,480,480,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Cabo Verde,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,3,3,3,3,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,7,7,10,10,10,55,55,55,55,55,67,67,67,88,90,106,106,113,113,121,121,152,165,165,186,191,218,230,236,246,260,270,289,315,326,328,328,328,335,349,356,362,371,380,390,390,390,390,405,421,435,458,466,477,502,536,542,554,567,585,616,657,697,726,750,760,781,792,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Uganda,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,14,14,14,14,33,33,33,44,44,45,48,48,52,52,53,53,53,53,54,54,54,55,55,55,55,55,55,56,61,63,75,75,75,79,79,79,81,83,85,88,89,97,98,101,101,116,121,122,126,139,160,203,227,227,260,260,264,264,274,312,304,304,341,351,410,410,446,458,458,586,636,651,686,722,745,775,775,794,808,808,823,823,823,823,823,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Togo,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,15,16,18,20,23,24,25,28,28,34,34,36,39,39,40,44,44,58,70,73,73,73,76,76,77,77,81,83,83,83,84,86,88,88,90,96,98,99,99,109,116,123,123,124,126,128,128,135,145,153,173,181,199,219,238,263,298,301,330,338,338,354,363,373,381,386,391,395,422,428,428,442,443,445,452,465,485,487,495,497,497,522,522,524,525,530,531,537,537,544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Rwanda,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,7,11,11,11,17,17,36,40,41,50,54,60,70,70,75,82,84,89,102,102,104,105,110,113,118,120,126,127,134,136,138,138,144,147,147,150,153,154,176,183,191,207,212,225,243,249,255,259,261,261,268,271,273,280,284,285,286,287,287,287,289,292,297,308,314,320,321,325,327,336,339,346,349,355,359,370,377,384,397,410,420,431,439,451,463,476,494,510,541,582,612,636,639,646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Malawi,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,4,8,8,8,9,12,13,16,16,16,16,17,17,17,17,18,23,33,33,33,34,36,36,36,37,37,38,39,41,41,43,43,43,56,56,57,58,63,63,63,65,70,70,71,72,72,82,83,83,101,101,101,203,273,279,284,336,358,369,393,409,409,438,443,455,455,481,481,529,547,556,564,572,592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mauritius,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,12,12,12,36,42,47,81,96,102,102,107,143,154,169,186,196,227,244,268,273,314,318,319,324,324,324,324,324,324,325,328,328,328,329,331,331,331,332,334,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,334,334,334,334,334,335,335,335,335,335,335,335,337,337,337,337,337,337,337,337,337,337,337,337,337,337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Liberia,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,6,6,7,10,13,14,14,31,31,37,48,50,51,59,59,73,76,81,91,99,101,101,101,117,120,124,133,141,141,141,152,154,158,166,170,178,189,199,199,204,211,212,213,215,219,223,226,229,233,238,240,249,255,265,265,266,266,269,273,280,288,296,311,316,321,334,345,359,370,383,397,410,421,446,458,498,509,516,542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Sao Tome and Principe,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,7,8,8,8,8,8,11,11,16,16,23,23,161,171,174,165,208,165,165,165,165,165,166,166,169,169,165,165,165,165,165,174,174,165,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,388,388,388,388,388,388,398,388,388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Eswatini,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,4,4,4,4,6,9,9,9,9,9,9,9,9,9,9,9,10,12,12,12,12,14,14,15,16,16,19,22,22,24,24,31,31,40,56,59,65,71,91,100,106,108,112,116,119,123,153,159,163,172,175,184,187,187,190,202,203,205,208,217,220,225,238,250,256,261,272,279,279,283,285,293,294,295,300,305,322,333,340,371,398,449,472,486,490,506,520,563,586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mozambique,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,5,5,7,8,8,8,8,10,10,10,10,10,10,10,17,17,20,20,20,21,28,28,29,31,31,35,35,39,41,41,65,70,76,76,76,76,76,79,79,80,80,80,81,81,82,87,91,103,104,107,115,119,129,137,145,146,156,162,164,168,194,209,213,227,233,234,244,254,254,307,316,352,352,409,424,433,453,472,489,509,553,583,609,638,651,662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Benin,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,5,5,6,6,6,6,6,9,13,13,13,13,22,23,26,26,30,30,35,35,35,35,35,37,37,37,37,54,54,54,58,58,58,64,64,64,69,84,90,90,90,96,102,102,140,242,284,319,319,327,327,339,339,339,339,129,130,130,135,135,135,191,191,208,210,218,218,232,232,243,244,244,261,261,268,268,305,339,339,390,412,412,470,483,532,572,597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Zimbabwe,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,3,5,5,5,5,8,8,8,9,9,9,9,11,11,11,11,13,14,17,18,23,23,24,25,25,25,28,28,28,29,31,31,31,32,32,32,34,34,34,34,34,34,34,34,35,36,36,37,37,37,42,44,44,46,46,48,51,51,56,56,56,56,132,132,149,174,178,178,206,222,222,265,279,279,287,314,320,332,343,356,383,387,391,401,463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Angola,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,7,8,8,10,10,14,16,17,19,19,19,19,19,19,19,19,19,19,19,19,24,24,24,25,25,25,26,27,27,27,27,29,35,35,35,36,36,36,36,43,45,45,45,45,48,48,48,48,50,52,58,60,60,60,69,69,71,71,73,81,84,86,86,86,86,86,86,86,91,92,96,113,118,130,138,140,142,142,155,166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Burundi,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,3,3,3,3,3,3,3,3,3,5,5,5,5,5,5,5,5,6,11,11,11,12,12,15,15,15,15,15,15,19,19,19,19,19,19,19,19,19,19,27,27,27,27,27,42,42,42,42,42,42,42,42,42,42,42,42,42,42,63,63,63,63,63,63,83,83,83,83,83,94,94,94,94,104,104,104,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Comoros,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,4,4,8,8,8,11,11,11,11,11,11,11,11,11,11,34,34,34,34,34,43,43,43,43,43,43,43,62,62,62,62,62,62,97,97,97,97,162,162,163,176,176,176,197,197,210,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Eritrea,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,4,6,6,6,6,6,6,15,20,20,20,29,29,31,33,33,33,33,34,34,34,35,35,35,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,41,41,41,41,41,41,41,41,41,65,96,109,121,131,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Botswana,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,4,4,6,6,6,13,13,13,13,13,13,13,15,15,15,20,20,20,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,29,29,29,35,35,35,35,35,35,35,38,38,40,40,40,40,40,40,42,42,48,48,60,60,60,60,60,79,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Gambia,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,3,3,3,4,4,4,4,4,4,4,4,4,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,11,12,12,17,17,17,17,17,18,20,20,20,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,25,25,25,25,25,25,26,26,26,26,26,26,28,28,28,28,28,28,28,28,34,34,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Namibia,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3,3,3,3,3,4,5,8,8,8,11,11,11,11,13,13,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,18,19,20,21,21,21,22,22,23,23,24,25,25,25,25,25,29,29,31,31,31,31,31,32,32,32,34,34,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Seychelles,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,4,6,6,6,7,7,7,7,7,7,7,7,8,8,8,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Lesotho,African Region,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Mayotte,African Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,4,4,11,14,24,30,35,50,50,50,82,82,101,116,128,128,147,147,164,184,186,191,191,191,207,207,217,221,233,245,245,284,284,311,326,339,354,354,401,433,460,460,539,539,596,650,686,739,739,854,890,890,1023,1061,1095,1143,1210,1258,1258,1342,1370,1419,1475,1494,1521,1521,1587,1609,1634,1645,1670,1699,1743,1871,1934,1986,1993,2058,2079,2079,2079,2151,2175,2226,2240,2268,2282,2282,2310,2333,2345,2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Reunion,African Region,Territories,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,6,9,9,9,12,15,28,47,64,71,83,94,135,135,143,207,207,247,281,308,321,334,344,349,358,362,376,382,388,389,391,391,390,394,402,407,408,408,410,410,412,412,412,417,418,418,420,420,420,420,423,424,425,425,427,430,430,436,436,437,439,440,441,443,443,446,446,447,449,449,452,452,456,459,460,465,470,471,471,473,477,478,479,480,480,480,481,481,486,487,488,489,495,496,495,497,502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Case on an international conveyance,Other,Other,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,61,64,64,70,135,175,174,218,218,355,454,454,542,621,634,634,634,695,691,691,705,705,705,706,706,706,706,706,696,696,696,696,696,696,696,696,697,697,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,712,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,Other,Other,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,Western Pacific Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91779,91845,92333,93349,94037,94787,95637,96580,97766,99058,100018,101443,102788,103775,104868,106422,107626,108930,110362,111396,112522,113641,114667,115852,117247,118549,120116,121426,122805,124204,125571,127595,129256,131115,132438,134506,136271,137902,139782,141469,142639,144121,145385,146449,147743,148838,150403,151444,152773,153868,154884,156184,157447,158544,159662,160910,161872,163201,164282,165550,166721,167546,168515,169178,169955,170910,171748,172696,173621,174548,175397,176404,177460,178502,180446,181665,183198,184305,185358,186853,188393,189030,190236,191275,192335,193178,194470,195487,196715,197864,198995,199922,200586,201462,202489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,Western Pacific Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3357,3357,3377,3405,3426,3438,3473,3502,3518,3540,3567,3592,3626,3649,3671,3701,3723,3760,3809,3838,3861,3892,3922,3944,3978,4017,4058,4125,4161,4201,4239,5558,5598,5621,5648,5685,5793,5818,5869,5906,5943,5958,5998,6037,6094,6127,6166,6229,6258,6287,6327,6361,6394,6448,6470,6493,6527,6578,6622,6664,6697,6730,6743,6765,6780,6793,6817,6844,6863,6879,6902,6927,6957,6981,7014,7028,7037,7044,7057,7067,7081,7092,7103,7112,7121,7132,7144,7156,7175,7200,7215,7228,7239,7249,7257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64188,74760,87108,104591,128541,151293,171424,195509,220516,250287,286697,324343,361031,392815,423946,464212,503006,541808,583141,621407,655339,686338,720219,759661,799696,839257,880106,913349,943272,977596,1013093,1050871,1086889,1122189,1149071,1187184,1219486,1251458,1284216,1314666,1341851,1359380,1386693,1406899,1434649,1461404,1492024,1518895,1544145,1566684,1593828,1626037,1654345,1682338,1707946,1731606,1755790,1780316,1801668,1826295,1848445,1870545,1890467,1909592,1928799,1946610,1966244,1987657,2006984,2025176,2041705,2061828,2079924,2102574,2122350,2142547,2159791,2175941,2191614,2211148,2230706,2249999,2268311,2286560,2303361,2321147,2339145,2358953,2378958,2398779,2416920,2434184,2452247,2471792,2490815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,European Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3108,3352,4084,4899,6000,7425,8742,10189,11986,13950,16105,18740,21427,23962,26694,30089,33604,37103,42334,46416,49479,52809,57639,61516,66213,70565,74237,77419,80712,84607,89317,93480,97201,100938,103586,106342,109952,113336,116523,119463,122218,124525,126429,129311,135961,138200,140586,142667,143987,145602,147780,150238,152179,154233,155552,156603,157880,159799,161413,163277,164723,165951,167173,167998,169033,170283,171327,172958,173886,174429,173213,176226,177331,178378,179353,180085,180594,182416,183313,182308,182165,183128,183732,184120,184671,185537,186326,186889,187468,188001,188350,188779,189582,190304,190903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,South-East Asia Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,508,538,657,918,979,1257,1776,1990,2344,2536,2932,3085,3709,4084,4215,5175,5324,5881,6528,7816,8828,9132,10707,11576,12978,14161,16041,16883,18663,20287,21790,23560,25291,27319,29576,31670,33912,36039,38572,41073,43846,46060,48348,51351,54021,57088,60490,64047,67673,72688,76998,81808,86294,90808,95314,100881,105901,110932,116617,122254,127995,134531,141593,148761,156211,164225,173159,182278,191966,201207,210273,218523,227611,238080,249525,260579,272512,283845,296620,309597,322863,336577,350542,364196,378118,392674,407414,422825,439348,455439,471392,486673,503034,521582,541041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,South-East Asia Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,9,23,31,38,45,58,65,72,79,105,114,139,158,166,195,216,245,267,302,344,362,426,468,569,617,728,766,829,936,990,1051,1134,1185,1275,1341,1427,1498,1554,1658,1747,1824,1917,2001,2088,2174,2256,2375,2463,2682,2821,2936,3075,3204,3356,3481,3597,3746,3921,4050,4201,4351,4582,4780,4971,5140,5347,5556,5748,5952,6140,6359,6630,6844,7157,7431,7743,8000,8277,8610,8942,9316,9672,9970,10376,10741,11171,11645,12126,12526,12927,13409,15498,15921,16360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16786,18060,19518,20759,22355,23669,25375,27215,29631,32442,35249,38931,42777,46329,50349,54281,58168,62236,65965,70293,74347,78565,81993,85350,88657,92226,95945,99713,103638,107389,111432,115824,120683,124691,129433,134470,139349,144450,149295,154971,160586,165933,171238,176928,182417,188585,194991,200609,206299,213376,221230,229198,237323,246022,255728,265164,274027,284270,293805,305189,315668,326568,338560,356749,361902,376379,389588,402919,415806,427832,438900,449590,461824,475419,489921,505001,520137,536148,552497,570026,587030,605026,623684,641429,658614,677338,696841,716151,737641,758551,778200,796759,817458,837497,856650,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,Eastern Mediterranean Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,873,1010,1161,1312,1466,1596,1741,1877,2008,2162,2336,2508,2668,2813,2954,3115,3279,3438,3593,3794,3976,4149,4314,4459,4607,4771,4943,5107,5255,5395,5532,5662,5784,5908,6048,6185,6326,6469,6608,6750,6887,6991,7148,7304,7447,7598,7741,7871,7971,8115,8290,8465,8608,8748,8878,9013,9138,9259,9389,9558,9701,9841,9979,10149,10303,10468,10648,10806,10988,11164,11293,11452,11621,11833,12078,12353,12627,12899,13181,13458,13720,14024,14326,14602,14913,15246,15581,15947,16260,16640,17077,17558,18057,18575,19041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4910,4979,9144,13271,18877,19685,37016,49444,60834,75712,81137,100314,120792,142081,163014,188751,216912,247473,279543,315714,352592,384242,417416,454710,493173,536664,573940,610742,644986,673361,707121,743607,784272,821860,858631,893119,925291,957403,995510,1047508,1094846,1140520,1179607,1213088,1246190,1291917,1340591,1384641,1433756,1477447,1507148,1542829,1586129,1636841,1655378,1702451,1743717,1781564,1819553,1864468,1909483,1966932,2017811,2082945,2105670,2166003,2220267,2282488,2338124,2395295,2454452,2495924,2556479,2613092,2677500,2743793,2817232,2905432,2949455,3022824,3084517,3155370,3234875,3311387,3366251,3415174,3485245,3560591,3638525,3711768,3781538,3841609,3899859,4015386,4092526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,Region of the Americas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,68,119,178,235,252,465,565,813,1065,1176,1485,1973,2457,2836,3400,4565,5600,6802,8187,9680,11097,12597,14775,17038,19294,21531,23759,25551,27336,30245,33028,35742,38258,40615,42686,44775,47812,50583,53103,56063,58492,60211,62404,65228,69087,72196,78409,77827,79590,81070,84804,87930,91893,98723,101874,104549,106504,109121,111934,115057,118799,121609,124668,125843,128649,131605,135184,138116,141472,143739,145810,148412,151212,154608,157702,160514,163248,165311,168553,172276,176167,179394,181804,183950,185863,189544,192944,196440,199252,201848,203574,205555,208991,212517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Confirmed,,African Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,228,233,367,473,572,739,990,1305,1664,1937,2419,2831,3004,3486,3786,4073,4702,5263,5446,6420,6616,7092,7647,8337,8789,9340,9728,10259,10787,11367,11843,12360,13104,13892,14760,15555,16115,16829,18234,19497,20316,21470,22239,23254,24713,26663,27973,29438,30536,32570,33973,35470,37717,40544,42626,44533,46829,49429,51752,54190,54461,58663,61163,63521,65956,68347,71752,74256,77295,80002,83044,85815,89592,92929,96902,100610,104242,108121,111486,115639,121104,126561,131324,135412,140498,145287,150102,155762,161254,167566,175503,181903,187625,194539,201178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Deaths,,African Region,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,7,8,12,20,23,26,29,31,39,47,51,60,77,91,127,164,170,236,243,294,326,349,382,415,444,464,501,523,550,586,616,628,662,704,720,748,788,812,839,865,881,903,938,973,1013,1064,1085,1112,1202,1228,1275,1322,1369,1415,1449,1500,1567,1623,1667,1710,1748,1796,1846,1910,1981,2040,2073,2120,2214,2308,2370,2427,2482,2554,2638,2700,2789,2858,2958,3062,3148,3236,3352,3493,3593,3700,3867,3998,4111,4235,4346,4482,4595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/content/x_y-squared.csv b/content/x_y-squared.csv deleted file mode 100644 index e74126ff..00000000 --- a/content/x_y-squared.csv +++ /dev/null @@ -1,11 +0,0 @@ -# x, y -0.000000000000000000e+00,0.000000000000000000e+00 -1.000000000000000000e+00,1.000000000000000000e+00 -2.000000000000000000e+00,4.000000000000000000e+00 -3.000000000000000000e+00,9.000000000000000000e+00 -4.000000000000000000e+00,1.600000000000000000e+01 -5.000000000000000000e+00,2.500000000000000000e+01 -6.000000000000000000e+00,3.600000000000000000e+01 -7.000000000000000000e+00,4.900000000000000000e+01 -8.000000000000000000e+00,6.400000000000000000e+01 -9.000000000000000000e+00,8.100000000000000000e+01 diff --git a/content/x_y-squared.npz b/content/x_y-squared.npz deleted file mode 100644 index 6c32f196..00000000 Binary files a/content/x_y-squared.npz and /dev/null differ diff --git a/environment.yml b/environment.yml index 4b5787f7..15dd1085 100644 --- a/environment.yml +++ b/environment.yml @@ -2,14 +2,17 @@ name: numpy-tutorials channels: - conda-forge dependencies: + # For running the tutorials - numpy - scipy + - pooch - matplotlib - - pytest - - nbval - - statsmodels - - pip + - pandas - imageio - - pip: - - jupyter-book - - gym[atari] + # For building the site + - sphinx + - myst-nb + - sphinx-book-theme + - sphinx-copybutton + # to load the md files in binder + - jupytext diff --git a/ignore_testing b/ignore_testing new file mode 100644 index 00000000..a72bcd51 --- /dev/null +++ b/ignore_testing @@ -0,0 +1,4 @@ +content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md +content/pairing.md +content/tutorial-style-guide.md +content/tutorial-nlp-from-scratch.md diff --git a/requirements.txt b/requirements.txt index 1b90d7ca..dd03cc89 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,9 @@ # For the tutorials numpy scipy +pooch # for scipy.datasets matplotlib -pytest -nbval -statsmodels +pandas imageio -gym==0.18.0 -atari-py==0.2.5 # For supporting .md-based notebooks jupytext diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 00000000..55090899 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.10 diff --git a/site/applications.md b/site/applications.md index 0e336146..fa81374e 100644 --- a/site/applications.md +++ b/site/applications.md @@ -10,8 +10,8 @@ maxdepth: 1 content/mooreslaw-tutorial content/tutorial-deep-learning-on-mnist -content/tutorial-deep-reinforcement-learning-with-pong-from-pixels content/tutorial-x-ray-image-processing content/tutorial-static_equilibrium content/tutorial-plotting-fractals +content/tutorial-air-quality-analysis ``` diff --git a/site/articles.md b/site/articles.md new file mode 100644 index 00000000..8540ed69 --- /dev/null +++ b/site/articles.md @@ -0,0 +1,13 @@ +# Articles + +```{admonition} Help improve the tutorials! + +Want to make a valuable contribution to the tutorials? Consider working on +these articles so that they become fully executable/reproducible! +``` + +```{toctree} + +content/tutorial-deep-reinforcement-learning-with-pong-from-pixels +content/tutorial-nlp-from-scratch +``` diff --git a/site/conf.py b/site/conf.py index 2871ed0b..4aea25ca 100644 --- a/site/conf.py +++ b/site/conf.py @@ -12,9 +12,10 @@ # -- Project information ----------------------------------------------------- +from datetime import date project = 'NumPy tutorials' -copyright = '2020, the NumPy community' +copyright = f'2020-{date.today().year}, the NumPy community' author = 'the NumPy community' @@ -28,16 +29,25 @@ 'sphinx_copybutton', ] +myst_enable_extensions = [ + 'dollarmath', +] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'notebooks'] +exclude_patterns = ['_build', + 'Thumbs.db', + '.DS_Store', + 'notebooks', + 'content/tutorial-nlp-from-scratch/README.md', + ] # MyST-NB configuration -execution_timeout = 900 +nb_execution_timeout = 900 # -- Options for HTML output ------------------------------------------------- @@ -55,7 +65,7 @@ "repository_branch": "main", "use_repository_button": True, "use_issues_button": True, - "use_edit_page_button": True, + "use_edit_page_button": False, "path_to_docs": "site/", "launch_buttons": { "binderhub_url": "https://mybinder.org", diff --git a/site/contributing.md b/site/contributing.md index 8985c56c..e95774a5 100644 --- a/site/contributing.md +++ b/site/contributing.md @@ -29,7 +29,7 @@ used in the main NumPy documentation has two reasons: * Jupyter notebooks are a common format for communicating scientific information. - * Jupyter notebooks can be launched in [Binder](https://www.mybinder.org), so that users can interact + * Jupyter notebooks can be launched in [Binder](https://mybinder.org), so that users can interact with tutorials * rST may present a barrier for some people who might otherwise be very interested in contributing tutorial material. @@ -42,7 +42,7 @@ You may notice our content is in markdown format (`.md` files). We review and host notebooks in the [MyST-NB](https://myst-nb.readthedocs.io/) format. We accept both Jupyter notebooks (`.ipynb`) and MyST-NB notebooks (`.md`). If you want to sync your `.ipynb` to your `.md` file follow the [pairing -tutorial](content/pairing.md). +tutorial](content/pairing). ```{toctree} :hidden: diff --git a/site/index.md b/site/index.md index 993deb8e..c15d6877 100644 --- a/site/index.md +++ b/site/index.md @@ -31,11 +31,27 @@ applications contributing ``` +### Non-executable articles + +```{admonition} Help improve the tutorials! + +Want to make a valuable contribution to the tutorials? Consider contributing to +these existing articles to help make them fully executable and reproducible! +``` + +```{toctree} +--- +maxdepth: 2 +--- + +articles +``` + ## Useful links and resources The following links may be useful: -- [NumPy Code of Conduct](https://numpy.org/doc/stable/dev/conduct/code_of_conduct.html) +- [NumPy Code of Conduct](https://numpy.org/code-of-conduct/) - [Main NumPy documentation](https://numpy.org/doc/stable/) - [NumPy documentation team meeting notes](https://hackmd.io/oB_boakvRqKR-_2jRV-Qjg?both) - [NEP 44 - Restructuring the NumPy documentation](https://numpy.org/neps/nep-0044-restructuring-numpy-docs.html) @@ -44,10 +60,3 @@ The following links may be useful: Note that regular documentation issues for NumPy can be found in the [main NumPy repository](https://github.com/numpy/numpy/issues) (see the `Documentation` labels there). - - -## Indices and tables - -* {ref}`genindex` -* {ref}`modindex` -* {ref}`search` diff --git a/test_requirements.txt b/test_requirements.txt new file mode 100644 index 00000000..d20d5b24 --- /dev/null +++ b/test_requirements.txt @@ -0,0 +1,2 @@ +pytest +nbval diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..ff48327d --- /dev/null +++ b/tox.ini @@ -0,0 +1,49 @@ +[tox] +envlist = + py{39,310,311,312}-test{,-oldestdeps,-devdeps,-predeps}{,-buildhtml} +requires = + pip >= 19.3.1 + +[testenv] + +description = run tests + +setenv = + devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/scientific-python-nightly-wheels/simple + +deps = + # We use these files to specify all the dependencies, and below we override + # versions for specific testing schenarios + -rtest_requirements.txt + -rsite/requirements.txt + -rrequirements.txt + + oldestdeps: numpy==1.23 + oldestdeps: matplotlib==3.6 + oldestdeps: scipy==1.8 + oldestdeps: pandas==1.4 + + devdeps: numpy>=0.0.dev0 + devdeps: scipy>=0.0.dev0 + devdeps: matplotlib>=0.0.dev0 + devdeps: pandas>=0.0.dev0 + +allowlist_externals = bash, make + +commands = + # Force numpy reinstall to work around upper version limits in downstream dependencies (e.g. pandas) + devdeps: pip install -U --pre --no-deps --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy + + pip freeze + + # Ignore testing the tutorials listed in ignore_testing file + !buildhtml: bash -c 'find content -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook ' + + !buildhtml: pytest --nbval-lax --durations=10 content/ + buildhtml: make -C site/ SPHINXOPTS="-nWT --keep-going" html + +pip_pre = + predeps: true + !predeps: false + +skip_install = true pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy